/* ============================================================
   FERRARINI & BONETTI — custom.css
   Caseificio Parmigiano Reggiano — Premium UI/UX
   Versione 1.0 — Marzo 2026
   ============================================================

   INDICE
   01. Custom Properties (variabili globali)
   02. Page Base
   03. Hero
   04. Process / Cards
   05. Stagionature
   06. Awards Carousel
   07. Emotional / Storia Famiglia
   08. CTA Visite
   09. Footer

   ============================================================ */


/* ============================================================
   01. CUSTOM PROPERTIES
   ============================================================ */

:root {
    /* Palette principale */
    --fb-gold: #c3a566;
    --fb-gold-cta: #c3a566;
    --fb-gold-hover: #e1b43d;
    --fb-gold-light: #f4ede0;
    --fb-gold-eyebrow: #c3a566;
    --fb-gold-dark-eyebrow: #d1a63a;

    /* Marroni / toni caldi */
    --fb-brown-900: #1f1a17;
    --fb-brown-800: #2d1f13;
    --fb-brown-700: #3b2a1f;
    --fb-brown-500: #5f5247;
    --fb-brown-300: #8a7b6c;

    /* Neutri caldi */
    --fb-cream-100: #faf6ef;
    --fb-cream-200: #f4ede0;
    --fb-cream-border: #e8ddd0;
    --fb-white: #ffffff;
    --fb-dark: #120e0b;

    /* Elevazione */
    --fb-shadow-xs: 0 2px 8px rgba(59, 42, 31, 0.06);
    --fb-shadow-sm: 0 6px 20px rgba(59, 42, 31, 0.07);
    --fb-shadow-md: 0 14px 36px rgba(59, 42, 31, 0.10);
    --fb-shadow-lg: 0 22px 52px rgba(59, 42, 31, 0.13);

    /* Radii */
    --fb-radius-sm: 6px;
    --fb-radius-md: 14px;
    --fb-radius-lg: 18px;
    --fb-radius-pill: 999px;

    /* Timing */
    --fb-ease: cubic-bezier(.25, .46, .45, .94);
    --fb-ease-out: cubic-bezier(.16, 1, .3, 1);

    /* Sfondi scuri — usati su sezioni dark (emotional, footer, overlay) */
    --fb-dark-soft: #0f0c0a;
    /* background sezione emotional */
    --fb-dark-mid: #18120d;
    /* background media emotional */
    --fb-dark-footer-top: #17120f;
    /* footer gradient top */
    --fb-dark-footer-bottom: #110d0a;
    /* footer gradient bottom */

    /* Medaglioni Awards */
    --fb-medal-gold: #c7921e;
    --fb-medal-silver: #8a8f98;
    --fb-medal-bronze: #a86135;

    /* Alias semantici per sezioni */
    --fb-section-light: var(--fb-white);
    /* sezione bianca */
    --fb-section-alt: var(--fb-cream-100);
    /* sezione crema alternata */
    --fb-section-dark: var(--fb-dark-soft);
    /* sezione scura */

    /* Overlay semitrasparenti su immagine */
    --fb-overlay-dark: rgba(12, 9, 7, 0.80);
    --fb-overlay-medium: rgba(26, 20, 14, 0.72);
}


/* ============================================================
   02. PAGE BASE
   ============================================================ */

body {
    background-color: var(--fb-white);
}


/* ============================================================
   03. HERO
   ============================================================ */

.fb-hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    min-height: 100svh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1f1a17;
}

/* Slideshow container */
.fb-hero__slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Singola slide */
.fb-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fbHeroFade 18s ease-in-out infinite;
}

/* ── Immagini: sostituisci i path con le tue foto ── */
.fb-hero__slide--1 {
    background-image: url('/files/2026/03/17/magazzino.webp');
    animation-delay: 0s;
}

.fb-hero__slide--2 {
    background-image: url('/files/2026/03/18/mucche3.jpg');
    /* ← sostituisci */
    animation-delay: 6s;
}

.fb-hero__slide--3 {
    background-image: url('/files/2026/03/18/lavorazione.avif');
    /* ← sostituisci */
    animation-delay: 12s;
}

/* Crossfade + leggero Ken Burns */
@keyframes fbHeroFade {
    0% {
        opacity: 0;
        transform: scale(1.00);
    }

    4% {
        opacity: 1;
    }

    30% {
        opacity: 1;
        transform: scale(1.06);
    }

    36% {
        opacity: 0;
        transform: scale(1.07);
    }

    100% {
        opacity: 0;
        transform: scale(1.00);
    }
}

.fb-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(18, 14, 10, 0.30) 0%,
            rgba(18, 14, 10, 0.44) 40%,
            rgba(18, 14, 10, 0.62) 100%);
}

.fb-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 150px 32px 100px;
    text-align: center;
    color: var(--fb-white);
}

.fb-hero__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.80);
}

.fb-hero__eyebrow::before,
.fb-hero__eyebrow::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.38);
    vertical-align: middle;
    margin: 0 10px;
}

.fb-hero__title {
    margin: 0 0 22px;
    font-size: clamp(42px, 6vw, 65px);
    line-height: 1.1;
    font-weight: 600;
    color: var(--fb-white);
    text-shadow: 0 3px 28px rgba(0, 0, 0, 0.22);
    letter-spacing: -0.015em;
}

.fb-hero__subtitle {
    margin: 0 auto 22px;
    max-width: 780px;
    font-size: clamp(19px, 2.0vw, 32px);
    line-height: 1.28;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.fb-hero__text {
    margin: 0 auto 40px;
    max-width: 740px;
    font-size: 17px;
    line-height: 1.76;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
}

.fb-hero__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.fb-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 196px;
    min-height: 54px;
    padding: 0 30px;
    border-radius: var(--fb-radius-sm);
    background: var(--fb-gold-cta);
    color: var(--fb-brown-900);
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        background .25s var(--fb-ease),
        transform .25s var(--fb-ease),
        box-shadow .25s var(--fb-ease);
    box-shadow: 0 10px 30px rgba(212, 166, 42, 0.32);
}

.fb-hero__btn:hover {
    background: var(--fb-gold-hover);
    color: var(--fb-brown-900);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(212, 166, 42, 0.42);
}

.fb-hero__btn--ghost {
    background: transparent;
    color: var(--fb-white);
    border: 1.5px solid rgba(255, 255, 255, 0.40);
    box-shadow: none;
}

.fb-hero__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.10);
    color: var(--fb-white);
    border-color: rgba(255, 255, 255, 0.62);
    box-shadow: none;
    transform: translateY(-2px);
}

/* Hero — Tablet */
@media (max-width: 991px) {
    .fb-hero {
        min-height: 88vh;
        min-height: 88svh;
    }

    .fb-hero__content {
        padding: 124px 24px 80px;
        max-width: 760px;
    }

    .fb-hero__eyebrow {
        font-size: 11px;
        letter-spacing: 0.14em;
    }

    .fb-hero__title {
        font-size: clamp(34px, 7vw, 56px);
        line-height: 1.02;
    }

    .fb-hero__subtitle {
        font-size: clamp(17px, 3.4vw, 26px);
        margin-bottom: 18px;
    }

    .fb-hero__text {
        font-size: 16px;
        line-height: 1.66;
        max-width: 600px;
    }
}

/* Hero — Mobile */
@media (max-width: 767px) {
    .fb-hero {
        min-height: auto;
        min-height: 80svh;
        align-items: flex-start;
    }

    .fb-hero__slide {
        background-position: 28% center;
    }

    .fb-hero__content {
        max-width: 100%;
        padding: 112px 20px 60px;
    }

    .fb-hero__eyebrow {
        margin-bottom: 12px;
        font-size: 10px;
        letter-spacing: 0.12em;
        margin-top: 60px;
    }

    .fb-hero__eyebrow::before,
    .fb-hero__eyebrow::after {
        width: 18px;
        margin: 0 7px;
    }

    .fb-hero__title {
        margin-bottom: 14px;
        font-size: 30px;
        line-height: 1.06;
    }

    .fb-hero__subtitle {
        margin-bottom: 14px;
        font-size: 16px;
        line-height: 1.34;
        max-width: 320px;
    }

    .fb-hero__text {
        margin-bottom: 28px;
        max-width: 320px;
        font-size: 14px;
        line-height: 1.62;
    }

    .fb-hero__actions {
        flex-direction: column;
        gap: 10px;
    }

    .fb-hero__btn,
    .fb-hero__btn--ghost {
        width: 100%;
        max-width: 290px;
        min-height: 52px;
        font-size: 12px;
    }
}

/* Hero — Mobile small */
@media (max-width: 420px) {
    .fb-hero__content {
        padding: 100px 16px 52px;
    }

    .fb-hero__title {
        font-size: 26px;
    }

    .fb-hero__subtitle {
        font-size: 15px;
        max-width: 300px;
    }

    .fb-hero__text {
        font-size: 13px;
        max-width: 300px;
    }

    .fb-hero__btn,
    .fb-hero__btn--ghost {
        max-width: 280px;
    }
}


/* Hero — Scroll indicator */
.fb-hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    animation: fbHeroScrollBounce 2.6s ease-in-out infinite;
}

.fb-hero__scroll-mouse {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.50);
    border-radius: 13px;
    padding-top: 7px;
    transition: border-color .22s var(--fb-ease);
}

.fb-hero__scroll:hover .fb-hero__scroll-mouse {
    border-color: rgba(255, 255, 255, 0.85);
}

.fb-hero__scroll-wheel {
    display: block;
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 2px;
    animation: fbHeroWheelScroll 1.9s ease-in-out infinite;
}

.fb-hero__scroll-chevron {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.50);
    border-bottom: 2px solid rgba(255, 255, 255, 0.50);
    transform: rotate(45deg);
    transition: border-color .22s var(--fb-ease);
}

.fb-hero__scroll:hover .fb-hero__scroll-chevron {
    border-color: rgba(255, 255, 255, 0.85);
}

@keyframes fbHeroWheelScroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    55% {
        opacity: 0;
        transform: translateY(12px);
    }

    56% {
        opacity: 0;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fbHeroScrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(7px);
    }
}

/* Nasconde l'indicatore su viewport molto bassi o mobile molto piccolo */
@media (max-height: 520px) {
    .fb-hero__scroll {
        display: none;
    }
}

@media (max-width: 767px) {
    .fb-hero__scroll {
        bottom: 22px;
    }
}


/* ============================================================
   04. PROCESS / CARDS
   ============================================================ */

.fb-home-process {
    background: var(--fb-white);
    color: var(--fb-brown-700);
    padding: 96px 24px 108px;
}

.fb-home-process__inner {
    max-width: 1240px;
    margin: 0 auto;
}

.fb-home-process__top {
    max-width: 900px;
    margin: 0 auto 52px;
    text-align: center;
}

.fb-home-process__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-eyebrow);
}

.fb-home-process__eyebrow::before,
.fb-home-process__eyebrow::after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--fb-cream-border);
    vertical-align: middle;
    margin: 0 9px;
}

.fb-home-process__title {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.06;
    font-weight: 600;
    color: var(--fb-brown-700);
    letter-spacing: -0.01em;
}

.fb-home-process__text {
    margin: 0 auto;
    max-width: 840px;
    font-size: 18px;
    line-height: 1.82;
    color: var(--fb-brown-500);
}

/* Fascia dati — data strip (light, full-width) */
.fb-home-process__stats {
    /* larghezza gestita via JS per breakout dai wrapper Joomla */
    margin: 52px 0 62px;
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #2d1f13 0%, #1f1a17 55%, #3b2a1f 100%);
    overflow: hidden;
    border-top: 2px solid rgba(195, 165, 102, 0.5);
    border-bottom: 2px solid rgba(195, 165, 102, 0.5);
    box-shadow: 0 8px 40px rgba(12, 9, 7, 0.32), inset 0 1px 0 rgba(255, 220, 140, 0.12);
    position: relative;
}

/* sottile glow dorato in cima */
.fb-home-process__stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(195, 165, 102, 0.7) 30%, rgba(195, 165, 102, 0.9) 50%, rgba(195, 165, 102, 0.7) 70%, transparent 100%);
    pointer-events: none;
}

.fb-home-process__stat {
    flex: 1;
    position: relative;
    padding: 46px 28px 42px;
    text-align: center;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    transition: background .3s var(--fb-ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.fb-home-process__stat:hover {
    background: rgba(195, 165, 102, 0.07);
}

/* divisore verticale tra le stat */
.fb-home-process__stat+.fb-home-process__stat::after {
    content: "";
    position: absolute;
    top: 32px;
    left: 0;
    width: 1px;
    height: calc(100% - 64px);
    background: linear-gradient(180deg, transparent 0%, rgba(195, 165, 102, 0.35) 20%, rgba(195, 165, 102, 0.55) 50%, rgba(195, 165, 102, 0.35) 80%, transparent 100%);
    pointer-events: none;
}

/* icone Font Awesome 7 sopra il numero */
.fb-home-process__stat::before {
    display: block;
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-style: normal;
    font-feature-settings: normal;
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 32px;
    line-height: 1;
    color: var(--fb-gold);
    margin: 0 auto 18px;
    opacity: 0.75;
    transition: opacity .25s var(--fb-ease), transform .25s var(--fb-ease);
    flex-shrink: 0;
}

.fb-home-process__stat:hover::before {
    opacity: 1;
    transform: translateY(-2px);
}

/* stat 1: mucca — capi allevati */
.fb-home-process__stat:nth-child(1)::before {
    content: "\f6c8";
    /* fa-cow */
}

/* stat 2: bottiglia — litri di latte */
.fb-home-process__stat:nth-child(2)::before {
    content: "\e4c5";
    /* fa-bottle-water */
}

/* stat 3: formaggio — forme di Parmigiano prodotte */
.fb-home-process__stat:nth-child(3)::before {
    content: "\f7ef";
    /* fa-cheese */
}

/* stat 4: magazzino — forme in stagionatura */
.fb-home-process__stat:nth-child(4)::before {
    content: "\f494";
    /* fa-warehouse */
}

.fb-home-process__number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 3.4vw, 58px);
    line-height: 1;
    font-weight: 700;
    color: var(--fb-gold);
    letter-spacing: -0.01em;
    transition: color .22s var(--fb-ease), transform .22s var(--fb-ease);
    margin-bottom: 0;
}

/* ornamento dorato sotto il numero */
.fb-home-process__number::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--fb-gold), transparent);
    margin: 10px auto 12px;
    opacity: 0.7;
    transition: width .3s var(--fb-ease), opacity .3s var(--fb-ease);
}

.fb-home-process__stat:hover .fb-home-process__number {
    color: #e1c07a;
    transform: translateY(-2px);
}

.fb-home-process__stat:hover .fb-home-process__number::after {
    width: 44px;
    opacity: 1;
}

.fb-home-process__label {
    font-size: 11px;
    line-height: 1.62;
    color: rgba(244, 237, 224, 0.68);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    max-width: 160px;
    margin: 0 auto;
    transition: color .22s var(--fb-ease);
}

.fb-home-process__stat:hover .fb-home-process__label {
    color: rgba(244, 237, 224, 0.9);
}

/* Grid Cards */
.fb-home-process__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.fb-home-process__card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--fb-white);
    border: 1px solid var(--fb-cream-border);
    border-radius: var(--fb-radius-md);
    overflow: hidden;
    box-shadow: var(--fb-shadow-sm);
    text-decoration: none !important;
    color: inherit;
    transition:
        transform .32s var(--fb-ease),
        box-shadow .32s var(--fb-ease),
        border-color .32s var(--fb-ease);
    cursor: pointer;
}

/* gold bar reveal dal basso */
.fb-home-process__card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--fb-gold), var(--fb-gold-hover));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .38s var(--fb-ease);
    z-index: 1;
}

.fb-home-process__card:hover::before {
    transform: scaleX(1);
}

.fb-home-process__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(59, 42, 31, 0.14), var(--fb-shadow-lg);
    border-color: rgba(200, 150, 42, 0.35);
}

.fb-home-process__card::after {
    content: attr(data-cta);
    position: absolute;
    bottom: 20px;
    right: 22px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--fb-gold);
    opacity: 0;
    transform: translateX(-5px);
    transition:
        opacity .28s var(--fb-ease),
        transform .28s var(--fb-ease);
}

.fb-home-process__card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.fb-home-process__media {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: var(--fb-cream-200);
}

/* gradiente inferiore verso il body della card */
.fb-home-process__media::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1;
    background: linear-gradient(to bottom, transparent, rgba(250, 246, 239, 0.28));
    pointer-events: none;
}

.fb-home-process__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(255, 255, 255, 0) 20%,
            rgba(255, 255, 255, 0.18) 38%,
            rgba(255, 255, 255, 0) 56%);
    transform: translateX(-120%);
    animation: fbHomeShimmer 5.8s infinite;
    pointer-events: none;
}

.fb-home-process__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    transition: transform .45s var(--fb-ease);
}

.fb-home-process__card:hover .fb-home-process__image {
    transform: scale(1.07);
}

.fb-home-process__body {
    padding: 22px 18px 46px;
    flex: 1;
}

.fb-home-process__card-title {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 600;
    color: var(--fb-brown-700);
    letter-spacing: -0.01em;
    transition: color .28s var(--fb-ease);
}

.fb-home-process__card:hover .fb-home-process__card-title {
    color: var(--fb-gold);
}

.fb-home-process__card-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.76;
    color: var(--fb-brown-500);
}

@keyframes fbHomeShimmer {
    0% {
        transform: translateX(-120%);
    }

    18% {
        transform: translateX(140%);
    }

    100% {
        transform: translateX(140%);
    }
}

/* Step badge — numero processo su ogni card */
.fb-home-process__card-step {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(19, 14, 10, 0.70);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--fb-gold);
    border: 1px solid rgba(195, 165, 102, 0.38);
    pointer-events: none;
    transition:
        background .28s var(--fb-ease),
        border-color .28s var(--fb-ease);
}

.fb-home-process__card:hover .fb-home-process__card-step {
    background: rgba(195, 165, 102, 0.22);
    border-color: rgba(195, 165, 102, 0.72);
}

/* Card DOP — leggero accento oro sull'overlay immagine */
.fb-home-process__card--dop .fb-home-process__media::before {
    background: linear-gradient(to bottom, transparent, rgba(195, 165, 102, 0.14));
}

/* Cards — 5 card: 3+2 centered sotto 1199px */
@media (max-width: 1199px) {
    .fb-home-process__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 16px;
    }

    .fb-home-process__card:nth-child(-n+3) {
        grid-column: span 2;
    }

    .fb-home-process__card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .fb-home-process__card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

/* Cards — Tablet */
@media (max-width: 991px) {
    .fb-home-process {
        padding: 78px 20px 88px;
    }

    .fb-home-process__stats {
        flex-wrap: wrap;
        margin: 40px 0 46px;
    }

    .fb-home-process__stat {
        flex: 1 1 50%;
        padding: 34px 18px 30px;
    }

    /* nasconde solo il divisore verticale del 3° item (primo della seconda riga) */
    .fb-home-process__stat:nth-child(3)::after {
        display: none;
    }

    /* divisore orizzontale per la seconda riga */
    .fb-home-process__stat:nth-child(3),
    .fb-home-process__stat:nth-child(4) {
        border-top: 1px solid rgba(195, 165, 102, 0.25);
    }

    .fb-home-process__top {
        margin-bottom: 40px;
    }

    .fb-home-process__text {
        font-size: 16px;
        line-height: 1.74;
    }

    /* 5 card: 2+2+1 centered a 991px */
    .fb-home-process__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }

    .fb-home-process__card:nth-child(-n+4) {
        grid-column: span 2;
    }

    .fb-home-process__card:nth-child(5) {
        grid-column: 2 / span 2;
    }

    .fb-home-process__body {
        padding: 20px 16px 42px;
    }
}

/* Cards — Mobile */
@media (max-width: 767px) {
    .fb-home-process {
        padding: 62px 16px 72px;
    }

    .fb-home-process__title {
        font-size: 28px;
    }

    .fb-home-process__stats {
        flex-wrap: wrap;
        margin: 34px 0 40px;
    }

    .fb-home-process__stat {
        flex: 1 1 50%;
        padding: 26px 0 22px;
    }

    /* nasconde solo il divisore verticale del 3° item (primo della seconda riga) */
    .fb-home-process__stat:nth-child(3)::after {
        display: none;
    }

    .fb-home-process__stat:nth-child(3),
    .fb-home-process__stat:nth-child(4) {
        border-top: 1px solid rgba(195, 165, 102, 0.25);
    }

    .fb-home-process__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* reset grid-column spans a 1 colonna */
    .fb-home-process__card:nth-child(n) {
        grid-column: auto;
    }

    .fb-home-process__card-title {
        font-size: 19px;
    }

    .fb-home-process__text,
    .fb-home-process__card-text {
        font-size: 15px;
    }
}



/* ============================================================
   05. STAGIONATURE
   ============================================================ */

.fb-aging {
    background: var(--fb-white);
    padding: 96px 24px 112px;
}

.fb-aging__inner {
    max-width: 1240px;
    margin: 0 auto;
}

.fb-aging__top {
    max-width: 860px;
    margin: 0 auto 54px;
    text-align: center;
}

.fb-aging__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-eyebrow);
}

.fb-aging__eyebrow::before,
.fb-aging__eyebrow::after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--fb-cream-border);
    vertical-align: middle;
    margin: 0 9px;
}

.fb-aging__title {
    margin: 0 0 18px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.06;
    font-weight: 600;
    color: var(--fb-brown-700);
    letter-spacing: -0.01em;
}

.fb-aging__text {
    margin: 0 auto -31px auto;
    max-width: 740px;
    font-size: 18px;
    line-height: 1.80;
    color: var(--fb-brown-500);
}

/* ── Selector pills ──────────────────────────────────────────────────────── */
/* ── Bollino selector ────────────────────────────────────────────────────── */
.fb-aging__selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 0 44px;
    flex-wrap: wrap;
}

.fb-aging__sel-pill {
    position: relative;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    outline: none;
    transition: transform .22s ease, filter .22s ease;
    filter: grayscale(0.4) brightness(0.88);
}

.fb-aging__sel-pill:hover {
    transform: translateY(-3px) scale(1.04);
    filter: grayscale(0) brightness(1);
}

.fb-aging__sel-pill.active {
    transform: translateY(-4px) scale(1.07);
    filter: grayscale(0) brightness(1.06);
}

.fb-aging__sel-pill.active .fb-aging__bollino-outer {
    filter: drop-shadow(0 6px 20px rgba(180, 130, 20, 0.50));
}

/* SVG bollino container */
.fb-aging__bollino-outer {
    width: 100%;
    height: 100%;
    display: block;
    transition: filter .22s ease;
}

/* number + label inside the SVG (positioned absolutely over svg) */
.fb-aging__sel-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    pointer-events: none;
}

.fb-aging__sel-kicker {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(30, 12, 0, 0.65);
    line-height: 1;
}

.fb-aging__sel-months {
    font-family: 'Playfair Display', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    color: #1a0800;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.25);
    transition: color .22s ease;
    transform: translateY(-7px);
    /* ← cambia questo valore per spostare su/giù */
}

.fb-aging__sel-label {
    font-size: 8px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(30, 12, 0, 0.65);
    line-height: 1;
    transition: color .22s ease;
}

/* 50 + 90 mesi — disco scuro: testo chiaro */
.fb-aging__sel-pill[data-idx="3"] .fb-aging__sel-months,
.fb-aging__sel-pill[data-idx="4"] .fb-aging__sel-months {
    color: #fff0d8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.fb-aging__sel-pill[data-idx="3"] .fb-aging__sel-kicker,
.fb-aging__sel-pill[data-idx="4"] .fb-aging__sel-kicker,
.fb-aging__sel-pill[data-idx="3"] .fb-aging__sel-label,
.fb-aging__sel-pill[data-idx="4"] .fb-aging__sel-label {
    color: rgba(255, 230, 180, 0.80);
}



/* ── Feature card ────────────────────────────────────────────────────────── */
.fb-aging__feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid var(--fb-cream-border);
    border-radius: var(--fb-radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 64px rgba(60, 40, 10, 0.10);
}

.fb-aging__feat-media {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    background: var(--fb-cream-200);
}

.fb-aging__feat-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity .30s ease;
}

.fb-aging__feat-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--fb-gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--fb-radius-pill);
    border: 1px solid rgba(200, 150, 42, 0.22);
    backdrop-filter: blur(4px);
    transition: opacity .30s ease;
}

.fb-aging__feat-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 52px;
    background: var(--fb-white);
}

.fb-aging__feat-months {
    margin: 0 0 6px;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 0.95;
    font-weight: 700;
    color: var(--fb-brown-700);
    letter-spacing: -0.03em;
    transition: opacity .25s ease;
}

.fb-aging__feat-subtitle {
    margin: 0 0 22px;
    font-size: 17px;
    font-weight: 500;
    color: var(--fb-gold);
    transition: opacity .25s ease;
}

.fb-aging__feat-text {
    margin: 0 0 36px;
    font-size: 15px;
    line-height: 1.84;
    color: var(--fb-brown-500);
    transition: opacity .25s ease;
}

.fb-aging__feat-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 28px;
    background: var(--fb-gold);
    color: var(--fb-brown-900);
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 40px;
    border: 2px solid var(--fb-gold);
    transition: background .22s var(--fb-ease), color .22s var(--fb-ease), border-color .22s var(--fb-ease), transform .18s var(--fb-ease), box-shadow .22s var(--fb-ease);
    align-self: flex-start;
    box-shadow: 0 3px 12px rgba(195, 165, 102, 0.28);
}

.fb-aging__feat-cta:hover {
    background: transparent;
    color: var(--fb-gold);
    border-color: var(--fb-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(195, 165, 102, 0.22);
}

/* fade durante il cambio contenuto */
.fb-aging__feature.switching .fb-aging__feat-img,
.fb-aging__feature.switching .fb-aging__feat-badge,
.fb-aging__feature.switching .fb-aging__feat-months,
.fb-aging__feature.switching .fb-aging__feat-subtitle,
.fb-aging__feature.switching .fb-aging__feat-text {
    opacity: 0;
}

/* Stagionature home — Tablet */
@media (max-width: 991px) {
    .fb-aging {
        padding: 78px 20px 88px;
    }

    .fb-aging__text {
        font-size: 16px;
    }

    .fb-aging__sel-pill {
        width: 106px;
        height: 106px;
    }

    .fb-aging__sel-months {
        font-size: 40px;
    }

    .fb-aging__feat-body {
        padding: 40px 36px;
    }
}

/* Stagionature home — Mobile */
@media (max-width: 767px) {
    .fb-aging {
        padding: 62px 16px 72px;
    }

    .fb-aging__top {
        margin-bottom: 28px;
    }

    .fb-aging__title {
        font-size: 28px;
    }

    .fb-aging__text {
        font-size: 14px;
        text-wrap: balance;
    }

    .fb-aging__selector {
        gap: 10px;
    }

    .fb-aging__sel-pill {
        width: 74px;
        height: 74px;
    }

    .fb-aging__sel-months {
        font-size: 30px;
    }

    .fb-aging__sel-kicker {
        font-size: 6.5px;
    }

    .fb-aging__sel-label {
        font-size: 6.5px;
    }

    .fb-aging__feature {
        grid-template-columns: 1fr;
    }

    .fb-aging__feat-media {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .fb-aging__feat-body {
        padding: 32px 28px 36px;
    }

    .fb-aging__feat-months {
        font-size: 42px;
    }
}

/* Stagionature home — Small mobile: griglia 4×2 bollini */
@media (max-width: 430px) {
    .fb-aging__selector {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        justify-content: unset;
        margin-bottom: 32px;
    }

    .fb-aging__sel-pill {
        width: auto;
        height: auto;
        aspect-ratio: 1;
        flex-shrink: unset;
        padding: 8px 4px;
        border-radius: 0;
        border-bottom: 1px solid rgba(200, 150, 42, 0.15);
        border-right: 1px solid rgba(200, 150, 42, 0.15);
    }

    .fb-aging__sel-pill:nth-child(4n) {
        border-right: none;
    }

    .fb-aging__sel-pill:nth-last-child(-n+4) {
        border-bottom: none;
    }

    .fb-aging__sel-pill img {
        width: 72px;
        height: 72px;
        display: block;
        margin: 0 auto;
    }

    .fb-aging__sel-months {
        font-size: 24px;
    }

    .fb-aging__sel-kicker,
    .fb-aging__sel-label {
        font-size: 5.5px;
    }
}


/* ============================================================
   06. AWARDS CAROUSEL
   ============================================================ */

.fb-awards {
    background: var(--fb-white);
    overflow: hidden;
}

.fb-awards__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.fb-awards__top {
    max-width: 860px;
    margin: 0 auto 48px;
    text-align: center;
}

.fb-awards__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-eyebrow);
}

.fb-awards__eyebrow::before,
.fb-awards__eyebrow::after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--fb-cream-border);
    vertical-align: middle;
    margin: 0 9px;
}

.fb-awards__title {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.06;
    font-weight: 600;
    color: var(--fb-brown-700);
    letter-spacing: -0.01em;
}

.fb-awards__text {
    margin: 0 auto;
    max-width: 740px;
    font-size: 17px;
    line-height: 1.80;
    color: var(--fb-brown-500);
}

.fb-awards__viewport {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.fb-awards__track {
    display: flex;
    align-items: stretch;
    gap: 22px;
    width: max-content;
    animation: fbAwardsScroll 28s linear infinite;
}

.fb-awards__viewport:hover .fb-awards__track {
    animation-play-state: paused;
}

.fb-awards__item {
    width: 280px;
    min-width: 280px;
    background: var(--fb-cream-100);
    border: 1px solid var(--fb-cream-border);
    border-top: 3px solid transparent;
    border-radius: var(--fb-radius-md);
    padding: 32px 22px 28px;
    text-align: center;
    box-shadow: var(--fb-shadow-sm);
    transition:
        transform .28s var(--fb-ease),
        box-shadow .28s var(--fb-ease),
        border-top-color .28s var(--fb-ease);
}

.fb-awards__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--fb-shadow-md);
    border-top-color: var(--fb-gold-cta);
}

.fb-awards__badge {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 108px;
    margin-bottom: 16px;
}

.fb-awards__badge img {
    display: block;
    width: 175px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.10));
}

.fb-awards__medal {
    margin: 50px 0 8px;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.fb-awards__detail {
    margin: 0;
    font-size: 14px;
    line-height: 1.66;
    color: var(--fb-brown-500);
}

.fb-awards__year {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--fb-brown-300);
}

.fb-awards__medal--gold {
    color: var(--fb-medal-gold);
}

.fb-awards__medal--silver {
    color: var(--fb-medal-silver);
}

.fb-awards__medal--bronze {
    color: var(--fb-medal-bronze);
}

@keyframes fbAwardsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 11px));
    }
}

/* Awards — Tablet */
@media (max-width: 991px) {
    .fb-awards {
        padding: 76px 0 86px;
    }

    .fb-awards__text {
        font-size: 15px;
        line-height: 1.74;
    }

    .fb-awards__item {
        width: 248px;
        min-width: 248px;
        padding: 26px 18px 24px;
    }

    .fb-awards__badge {
        height: 92px;
    }

    .fb-awards__badge img {
        width: 88px;
    }
}

/* Awards — Mobile */
@media (max-width: 767px) {
    .fb-awards {
        padding: 60px 0 70px;
    }

    .fb-awards__inner {
        padding: 0 16px;
    }

    .fb-awards__title {
        font-size: 26px;
    }

    .fb-awards__text {
        font-size: 14px;
    }

    .fb-awards__viewport {
        margin-top: 36px;
        mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
    }

    .fb-awards__track {
        gap: 14px;
        animation-duration: 22s;
    }

    .fb-awards__item {
        width: 210px;
        min-width: 210px;
        border-radius: var(--fb-radius-sm);
        padding: 22px 16px 20px;
    }

    .fb-awards__badge {
        height: 80px;
        margin-bottom: 12px;
    }

    .fb-awards__badge img {
        width: 76px;
    }

    .fb-awards__medal {
        font-size: 20px;
    }

    .fb-awards__detail {
        font-size: 13px;
    }
}


/* ============================================================
   06b. GOOGLE REVIEWS
   ============================================================ */

/* Sezione wrapper — tutto il resto è in grw-styles.css */
.fb-reviews {
    padding: 15px 0 25px;
    background: var(--fb-cream-100);
}

.fb-reviews__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.fb-reviews__header {
    text-align: center;
    margin-bottom: 48px;
}

.fb-reviews__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-eyebrow);
}

.fb-reviews__title {
    margin: 0 0 14px;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--fb-brown-700);
}

.fb-reviews__subtitle {
    font-size: 16px;
    line-height: 1.65;
    color: var(--fb-brown-500);
    max-width: 540px;
    margin: 0px auto -30px auto;
}

/* max-width override per il wrapper — il widget di default usa 280px */
.fb-reviews__widget-wrap .grw-wrapper {
    max-width: 100% !important;
}

@media (max-width: 767px) {
    .fb-reviews {
        padding: 56px 0 64px;
    }

    .fb-reviews__inner {
        padding: 0 20px;
    }

    .fb-reviews__header {
        margin-bottom: 36px;
    }
}


/* ============================================================
   07. EMOTIONAL / STORIA FAMIGLIA
   ============================================================ */

.fb-story-family {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--fb-dark-soft);
    overflow: hidden;
}

.fb-story-family__inner {
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    min-height: 80vh;
}

.fb-story-family__content {
    position: relative;
    background: linear-gradient(135deg,
            rgba(7, 6, 5, 0.99) 0%,
            rgba(10, 8, 7, 0.97) 58%,
            rgba(16, 12, 9, 0.92) 100%);
    color: var(--fb-white);
    padding: 80px 62px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.fb-story-family__content-inner {
    max-width: 520px;
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity .9s var(--fb-ease-out),
        transform .9s var(--fb-ease-out);
}

.fb-story-family.is-visible .fb-story-family__content-inner {
    opacity: 1;
    transform: translateY(0);
}

.fb-story-family__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
}

.fb-story-family__eyebrow::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(209, 166, 58, 0.40);
    margin-top: 10px;
}

.fb-story-family__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.02;
    font-weight: 600;
    color: var(--fb-white);
    letter-spacing: -0.01em;
}

.fb-story-family__text {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.84;
    color: rgba(255, 255, 255, 0.84);
}

.fb-story-family__signature {
    margin: 0 0 30px;
    font-size: 22px;
    line-height: 1.34;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
    padding-left: 16px;
    border-left: 2px solid rgba(209, 166, 58, 0.48);
}

.fb-story-family__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: var(--fb-radius-sm);
    background: var(--fb-gold-cta);
    color: var(--fb-brown-900);
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        background .25s var(--fb-ease),
        transform .25s var(--fb-ease),
        box-shadow .25s var(--fb-ease);
    box-shadow: 0 10px 28px rgba(212, 166, 42, 0.28);
}

.fb-story-family__btn:hover {
    background: var(--fb-gold-hover);
    color: var(--fb-brown-900);
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(212, 166, 42, 0.38);
}

.fb-story-family__media {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background: var(--fb-dark-mid);
}

.fb-story-family__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(15, 12, 10, 0.88) 0%,
            rgba(15, 12, 10, 0.60) 10%,
            rgba(15, 12, 10, 0.28) 20%,
            rgba(15, 12, 10, 0.08) 32%,
            rgba(15, 12, 10, 0.00) 46%);
}

.fb-story-family__image {
    position: absolute;
    inset: 0;
    width: 98%;
    height: 125%;
    object-fit: cover;
    object-position: 58% center;
    display: block;
    transform: translateY(0);
    will-change: transform;
}

/* Emotional — Desktop medium */
@media (max-width: 1199px) {
    .fb-story-family__inner {
        grid-template-columns: 0.95fr 1fr;
        min-height: 500px;
    }

    .fb-story-family__content {
        padding: 64px 44px;
    }

    .fb-story-family__media {
        min-height: 500px;
    }

    .fb-story-family__image {
        width: 110%;
        height: 110%;
        object-position: 60% center;
    }
}

/* Emotional — Tablet */
@media (max-width: 991px) {
    .fb-story-family__inner {
        grid-template-columns: 1fr;
    }

    .fb-story-family__content {
        padding: 58px 28px;
    }

    .fb-story-family__content-inner {
        max-width: 100%;
    }

    .fb-story-family__media {
        min-height: 480px;
    }

    .fb-story-family__image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center top;
    }

    .fb-story-family__media::before {
        background: linear-gradient(180deg,
                rgba(15, 12, 10, 0.36) 0%,
                rgba(15, 12, 10, 0.14) 28%,
                rgba(15, 12, 10, 0.00) 52%);
    }

    .fb-story-family__title {
        font-size: clamp(30px, 6vw, 46px);
    }

    .fb-story-family__text {
        font-size: 16px;
        line-height: 1.74;
    }

    .fb-story-family__signature {
        font-size: 20px;
    }
}

/* Emotional — Mobile */
@media (max-width: 767px) {
    .fb-story-family__content {
        padding: 50px 18px;
    }

    .fb-story-family__title {
        font-size: 30px;
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .fb-story-family__text {
        font-size: 15px;
        line-height: 1.70;
        margin-bottom: 14px;
    }

    .fb-story-family__signature {
        font-size: 18px;
        margin-bottom: 22px;
    }

    .fb-story-family__btn {
        width: 100%;
        max-width: 280px;
    }

    .fb-story-family__media {
        min-height: 360px;
    }

    .fb-story-family__image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center top;
    }
}


/* ============================================================
   08. CTA VISITE
   ============================================================ */

/* CTA Visite — content overlay (background image impostato in SPPageBuilder) */
.fbv2-visit {
    position: relative;
    height: 515px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* nessun background — SPPageBuilder section lo gestisce */
}

/* overlay scuro per leggibilità del testo */
.fbv2-visit::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(12, 9, 7, 0.52) 0%,
            rgba(12, 9, 7, 0.62) 50%,
            rgba(12, 9, 7, 0.70) 100%);
}

.fbv2-visit__inner {
    position: relative;
    z-index: 2;
    /* sopra l'overlay ::before */
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 24px;
    text-align: center;
    color: var(--fb-white);
}

.fbv2-visit__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
}

.fbv2-visit__eyebrow::before,
.fbv2-visit__eyebrow::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: rgba(209, 166, 58, 0.50);
    vertical-align: middle;
    margin: 0 10px;
}

.fbv2-visit__title {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.06;
    font-weight: 600;
    color: var(--fb-white);
    letter-spacing: -0.01em;
}

.fbv2-visit__text {
    margin: 0 auto 28px;
    max-width: 620px;
    font-size: 17px;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.82);
}

.fbv2-visit__features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.fbv2-visit__features li {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 16px;
    border-radius: var(--fb-radius-pill);
    background: rgba(212, 166, 42, 0.12);
    border: 1px solid rgba(212, 166, 42, 0.28);
    font-size: 13px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.90);
    font-weight: 500;
}

.fbv2-visit__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.fbv2-visit__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 52px;
    padding: 0 32px;
    border-radius: var(--fb-radius-sm);
    background: var(--fb-gold-cta);
    color: var(--fb-brown-900);
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        background .22s var(--fb-ease),
        transform .22s var(--fb-ease),
        box-shadow .22s var(--fb-ease);
    box-shadow: 0 10px 28px rgba(212, 166, 42, 0.30);
}

.fbv2-visit__btn:hover {
    background: var(--fb-gold-hover);
    color: var(--fb-brown-900);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(212, 166, 42, 0.40);
}

.fbv2-visit__btn--ghost {
    background: transparent;
    color: var(--fb-white);
    border: 1.5px solid rgba(255, 255, 255, 0.42);
    box-shadow: none;
}

.fbv2-visit__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.09);
    color: var(--fb-white);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: none;
    transform: translateY(-2px);
}

/* CTA Visite — Mobile */
@media (max-width: 767px) {
    .fbv2-visit {
        min-height: 420px;
    }

    .fbv2-visit__inner {
        padding: 64px 20px;
    }

    .fbv2-visit__title {
        font-size: 28px;
    }

    .fbv2-visit__text {
        font-size: 15px;
    }

    .fbv2-visit__btn,
    .fbv2-visit__btn--ghost {
        width: 100%;
        max-width: 300px;
        min-height: 50px;
    }
}


/* ============================================================
   09. PAGINA AZIENDA
   ============================================================ */

/* ── Page Hero (hero interno per sottopagine) ── */
.fb-page-hero {
    position: relative;
    height: 62vh;
    min-height: 420px;
    max-height: 640px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-size: cover;
    background-position: center 35%;
}

.fb-page-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 56px;
    color: var(--fb-white);
}

.fb-page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.60);
    text-transform: uppercase;
}

.fb-page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    transition: color .2s;
}

.fb-page-hero__breadcrumb a:hover {
    color: var(--fb-gold-cta);
}

.fb-page-hero__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
}

.fb-page-hero__title {
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--fb-white);
}

.fb-page-hero__subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.80);
}

.fb-page-hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.65;
    transition: opacity .25s;
}

.fb-page-hero__scroll:hover {
    opacity: 1;
}

.fb-page-hero__scroll-mouse {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}

.fb-page-hero__scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--fb-gold);
    border-radius: 2px;
    animation: fbScrollWheel 2s ease-in-out infinite;
}

@keyframes fbScrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    60% {
        transform: translateY(14px);
        opacity: 0;
    }

    61% {
        transform: translateY(0);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .fb-page-hero {
        height: 70vh;
        min-height: 340px;
    }

    .fb-page-hero__title {
        font-size: 30px;
    }

    .fb-page-hero__subtitle {
        font-size: 15px;
    }
}


/* ── Sezione Azienda (split testo + immagini) ── */
.fb-company {
    padding: 100px 24px 112px;
    background: var(--fb-white);
}

.fb-company__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.fb-company__top {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.fb-company__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
}

.fb-company__eyebrow::before,
.fb-company__eyebrow::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: rgba(209, 166, 58, 0.45);
    vertical-align: middle;
    margin: 0 8px;
}

.fb-company__title {
    margin: 0;
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--fb-brown-800);
}

.fb-company__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.fb-company__lead {
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--fb-brown-700);
    font-weight: 500;
}

.fb-company__body {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.80;
    color: var(--fb-brown-500);
}

.fb-company__pullquote {
    margin: 0 0 28px;
    padding: 18px 22px;
    border: 1px solid var(--fb-cream-border);
    border-left: 3px solid var(--fb-gold-cta);
    background: var(--fb-cream-100);
    border-radius: var(--fb-radius-md);
    font-size: 17px;
    line-height: 1.72;
    color: var(--fb-brown-700);
    font-weight: 500;
    font-style: italic;
    quotes: none;
}

.fb-company__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 32px 0 36px;
}

.fb-company__stat-pill {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px 18px;
    background: var(--fb-cream-100);
    border: 1px solid var(--fb-cream-border);
    border-radius: var(--fb-radius-md);
    border-left: 3px solid var(--fb-gold-cta);
}

.fb-company__stat-pill strong {
    font-size: 26px;
    font-weight: 800;
    color: var(--fb-brown-900);
    line-height: 1;
    letter-spacing: -0.02em;
}

.fb-company__stat-pill span {
    font-size: 11px;
    color: var(--fb-brown-500);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.fb-company__actions {
    margin-top: 8px;
}

.fb-company__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 32px;
    background: var(--fb-gold-cta);
    color: var(--fb-brown-900);
    text-decoration: none !important;
    border-radius: var(--fb-radius-sm);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background .22s var(--fb-ease), transform .22s var(--fb-ease), box-shadow .22s var(--fb-ease);
    box-shadow: 0 8px 24px rgba(212, 166, 42, 0.28);
}

.fb-company__btn:hover {
    background: var(--fb-gold-hover);
    color: var(--fb-brown-900);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(212, 166, 42, 0.38);
}

.fb-company__link {
    display: inline-flex;
    align-items: center;
    margin-left: 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--fb-brown-700);
    text-decoration: none !important;
    border-bottom: 1.5px solid var(--fb-gold-cta);
    padding-bottom: 2px;
    transition: color .2s var(--fb-ease), border-color .2s var(--fb-ease);
}

.fb-company__link:hover {
    color: var(--fb-gold-cta);
}

/* immagini destra */
.fb-company__img-col {
    position: relative;
}

.fb-company__img-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
}

.fb-company__img--main {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: var(--fb-radius-lg);
    overflow: hidden;
    box-shadow: var(--fb-shadow-lg);
}

.fb-company__img--accent {
    display: none;
}

.fb-company__img-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -22px;
    left: -22px;
    width: 100px;
    height: 100px;
    background: var(--fb-gold-cta);
    border-radius: 50%;
    box-shadow: 0 8px 28px rgba(212, 166, 42, 0.40);
    text-align: center;
    line-height: 1;
    gap: 2px;
}

.fb-company__badge-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fb-brown-900);
    opacity: 0.70;
}

.fb-company__badge-year {
    font-size: 26px;
    font-weight: 800;
    color: var(--fb-brown-900);
    letter-spacing: -0.04em;
    line-height: 1;
}

@media (max-width: 991px) {
    .fb-company__split {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .fb-company__img-col {
        order: -1;
    }

    .fb-company__img-wrap {
        aspect-ratio: 16 / 9;
    }

    .fb-company__img--accent {
        display: none;
    }

    .fb-company__img-badge {
        right: 16px;
    }
}

@media (max-width: 767px) {
    .fb-company {
        padding: 72px 16px 80px;
    }

    .fb-company__stats {
        grid-template-columns: 1fr 1fr;
    }
}


/* ── Filiera: 4 step alternati ── */
.fb-filiera {
    padding: 100px 24px 0;
    background: var(--fb-white);
}

.fb-filiera__inner {
    /* max-width: 1120px; */
    margin: 0 auto;
}

.fb-filiera__top {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}

.fb-filiera__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
}

.fb-filiera__eyebrow::before,
.fb-filiera__eyebrow::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: rgba(209, 166, 58, 0.45);
    vertical-align: middle;
    margin: 0 8px;
}

.fb-filiera__title {
    margin: 0 0 16px;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--fb-brown-800);
}

.fb-filiera__intro {
    margin: 0;
    font-size: 16px;
    line-height: 1.78;
    color: var(--fb-brown-500);
}

/* Steps: edge-to-edge panel rows */
.fb-filiera__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--fb-cream-border);
}

.fb-filiera__step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
    border-bottom: 1px solid var(--fb-cream-border);
}

/* Illustration panel */
.fb-filiera__step-media {
    background: var(--fb-cream-100);
    border-right: 1px solid var(--fb-cream-border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 52px 48px;
    transition: background .3s var(--fb-ease);
}

.fb-filiera__step-media:hover {
    background: var(--fb-cream-200);
}

/* Reverse: swap media to right, body to left */
.fb-filiera__step--rev .fb-filiera__step-media {
    order: 2;
    border-right: none;
    border-left: 1px solid var(--fb-cream-border);
}

.fb-filiera__step--rev .fb-filiera__step-body {
    order: 1;
}

.fb-filiera__step-img {
    display: block;
    max-width: 100%;
    max-height: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: opacity(0.85);
    transition: transform .55s var(--fb-ease), filter .3s;
}

.fb-filiera__step-media:hover .fb-filiera__step-img {
    transform: scale(1.06);
    filter: opacity(1);
}

/* Text panel */
.fb-filiera__step-body {
    padding: 52px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--fb-white);
}

.fb-filiera__step-num {
    font-size: clamp(44px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--fb-gold-cta);
    opacity: 0.45;
    margin-bottom: 10px;
    display: block;
}

.fb-filiera__step-num::before {
    display: none;
}

.fb-filiera__step-title {
    margin: 0 0 14px;
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 700;
    color: var(--fb-brown-800);
    letter-spacing: -0.01em;
}

.fb-filiera__step-text {
    margin: 0 0 20px;
    font-size: 15.5px;
    line-height: 1.82;
    color: var(--fb-brown-500);
}

.fb-filiera__step-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--fb-gold-cta);
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(212, 166, 42, 0.40);
    align-self: flex-start;
    transition: color .2s, gap .25s var(--fb-ease), border-color .2s;
}

.fb-filiera__step-link:hover {
    color: var(--fb-gold-hover);
    gap: 12px;
    border-color: var(--fb-gold-hover);
}

@media (max-width: 760px) {
    .fb-filiera__step-media {
        padding: 36px 28px;
    }

    .fb-filiera__step-body {
        padding: 36px 28px;
    }

    .fb-filiera__step-img {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .fb-filiera {
        padding: 72px 0 0;
    }

    .fb-filiera__step {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .fb-filiera__step-media,
    .fb-filiera__step--rev .fb-filiera__step-media {
        order: 1;
        border-right: none;
        border-left: none;
        border-bottom: 1px solid var(--fb-cream-border);
        padding: 36px 28px;
        min-height: 180px;
    }

    .fb-filiera__step-body,
    .fb-filiera__step--rev .fb-filiera__step-body {
        order: 2;
        padding: 32px 20px 36px;
    }

    .fb-filiera__step-img {
        max-height: 160px;
    }
}


/* ── Citazione ── */
.fb-quote {
    padding: 96px 24px;
    background: var(--fb-cream-100);
    text-align: center;
}

.fb-quote__inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.fb-quote__mark {
    font-size: 120px;
    line-height: 0.5;
    color: var(--fb-gold-cta);
    opacity: 0.45;
    font-family: Georgia, serif;
    margin-bottom: 28px;
    display: block;
    user-select: none;
}

.fb-quote__text {
    margin: 0 0 28px;
    font-size: clamp(18px, 2.2vw, 26px);
    line-height: 1.65;
    color: var(--fb-brown-700);
    font-style: italic;
    font-weight: 400;
}

.fb-quote__author {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
    font-style: normal;
}

@media (max-width: 767px) {
    .fb-quote {
        padding: 72px 20px;
    }

    .fb-quote__mark {
        font-size: 80px;
    }
}


/* ============================================================
   10. PAGINA STORIA
   ============================================================ */

/* ── Intro fondatori ── */
.fb-storia-intro {
    padding: 100px 24px 112px;
    background: var(--fb-white);
}

.fb-storia-intro__inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fb-storia-intro__img-wrap {
    position: relative;
    border-radius: var(--fb-radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: var(--fb-shadow-lg);
}

.fb-storia-intro__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
}

.fb-storia-intro__img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
    background: linear-gradient(to top, rgba(12, 9, 7, 0.75) 0%, transparent 100%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    letter-spacing: 0.04em;
}

.fb-storia-intro__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
}

.fb-storia-intro__eyebrow::before,
.fb-storia-intro__eyebrow::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: rgba(209, 166, 58, 0.45);
    vertical-align: middle;
    margin: 0 8px;
}

.fb-storia-intro__title {
    margin: 0 0 22px;
    font-size: clamp(26px, 2.8vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--fb-brown-800);
}

.fb-storia-intro__lead {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--fb-brown-700);
    font-weight: 500;
}

.fb-storia-intro__body {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.80;
    color: var(--fb-brown-500);
}

.fb-storia-intro__pills {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.fb-storia-intro__pill {
    flex: 1 1 120px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    background: var(--fb-cream-100);
    border: 1px solid var(--fb-cream-border);
    border-top: 3px solid var(--fb-gold-cta);
    border-radius: var(--fb-radius-md);
}

.fb-storia-intro__pill strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--fb-brown-800);
    line-height: 1.1;
}

.fb-storia-intro__pill span {
    font-size: 11px;
    color: var(--fb-brown-500);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .fb-storia-intro__inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .fb-storia-intro__img-wrap {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 767px) {
    .fb-storia-intro {
        padding: 72px 16px 80px;
    }

    .fb-storia-intro__pills {
        gap: 10px;
    }
}


/* ── Timeline premium verticale ── */
.fb-timeline {
    padding: 100px 24px 120px;
    background: var(--fb-white);
}

.fb-timeline__inner {
    max-width: 820px;
    margin: 0 auto;
}

/* header sezione */
.fb-timeline__top {
    text-align: center;
    margin-bottom: 80px;
}

.fb-timeline__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-cta);
}

.fb-timeline__eyebrow::before,
.fb-timeline__eyebrow::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: rgba(212, 166, 42, 0.40);
    vertical-align: middle;
    margin: 0 8px;
}

.fb-timeline__title {
    margin: 0 0 18px;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--fb-brown-800);
}

.fb-timeline__subtitle {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--fb-brown-500);
}

/* lista senza bullet */
.fb-timeline__list {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* linea verticale oro sinistra */
.fb-timeline__list::before {
    content: "";
    position: absolute;
    left: 148px;
    /* allineata al centro della colonna spine */
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom,
            rgba(212, 166, 42, 0.90) 0%,
            rgba(212, 166, 42, 0.12) 100%);
}

/* singolo evento: griglia anno | spine | corpo */
.fb-timeline__entry {
    display: grid;
    grid-template-columns: 132px 32px 1fr;
    gap: 0;
    padding: 36px 0;
    border-bottom: 1px solid var(--fb-cream-border);
    /* animazione fade-in */
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity .55s var(--fb-ease), transform .55s var(--fb-ease);
}

.fb-timeline__entry:last-child {
    border-bottom: none;
}

.fb-timeline__entry--visible {
    opacity: 1;
    transform: translateX(0);
}

/* colonna anno: grande e dorata */
.fb-timeline__entry-year {
    padding-top: 2px;
    text-align: right;
    padding-right: 20px;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--fb-gold-cta);
    opacity: 0.85;
    font-variant-numeric: tabular-nums;
}

/* colonna spine: solo il dot */
.fb-timeline__entry-spine {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6px;
}

.fb-timeline__entry-dot {
    width: 11px;
    height: 11px;
    background: var(--fb-gold-cta);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(212, 166, 42, 0.18);
}

.fb-timeline__entry-dot--current {
    width: 15px;
    height: 15px;
    background: var(--fb-gold-hover);
    box-shadow: 0 0 0 5px rgba(212, 166, 42, 0.22);
}

/* colonna corpo: titolo + testo + immagine */
.fb-timeline__entry-body {
    padding-left: 20px;
    padding-bottom: 4px;
}

.fb-timeline__entry-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--fb-brown-800);
    letter-spacing: -0.01em;
}

.fb-timeline__entry-text {
    margin: 0 0 16px;
    font-size: 14.5px;
    line-height: 1.80;
    color: var(--fb-brown-500);
}

.fb-timeline__entry-text strong {
    color: var(--fb-brown-800);
    font-weight: 600;
}

.fb-timeline__entry-img {
    width: 100%;
    aspect-ratio: 16 / 7;
    background-size: cover;
    background-position: center;
    border-radius: var(--fb-radius-md);
    margin-top: 4px;
    opacity: 0.88;
}

/* voce corrente: anno più brillante */
.fb-timeline__entry--current .fb-timeline__entry-year {
    color: var(--fb-gold-hover);
    opacity: 1;
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .fb-timeline {
        padding: 72px 16px 80px;
    }

    .fb-timeline__list::before {
        left: 64px;
    }

    .fb-timeline__entry {
        grid-template-columns: 56px 28px 1fr;
        padding: 28px 0;
    }

    .fb-timeline__entry-year {
        font-size: 22px;
        padding-right: 12px;
    }

    .fb-timeline__entry-body {
        padding-left: 12px;
    }

    .fb-timeline__entry-title {
        font-size: 16px;
    }
}


/* ============================================================
   11. FOOTER
   ============================================================ */

#sp-footer {
    color: var(--fb-white);
    text-align: center;
    padding: 0;
}

.fbf5-footer,
.fbf5-footer * {
    box-sizing: border-box;
}

.fbf5-footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background:
        radial-gradient(circle at top left, rgba(212, 166, 42, 0.06) 0%, rgba(212, 166, 42, 0) 28%),
        linear-gradient(180deg, var(--fb-dark-footer-top) 0%, var(--fb-dark-footer-bottom) 100%);
    color: rgba(255, 255, 255, 0.86);
    overflow: hidden;
    margin-bottom: -20px;
}

/* Reset SPPageBuilder */
.fbf5-footer ul,
.fbf5-footer ol {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.fbf5-footer ul>li,
.fbf5-footer ol>li,
.fbf5-footer .sp-module ul>li,
.fbf5-footer .sppb-addon-module ul>li,
.fbf5-footer .sp-module-content ul>li,
.fbf5-footer .sp-module ul>li:last-child,
.fbf5-footer .sppb-addon-module ul>li:last-child {
    border-bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    box-shadow: none !important;
}

.fbf5-footer .sp-module ul>li>a,
.fbf5-footer .sppb-addon-module ul>li>a,
.fbf5-footer .fbf5-footer__nav a {
    display: inline-block !important;
    padding: 0 !important;
    line-height: 1.5 !important;
    border: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.78) !important;
    transition: color .22s var(--fb-ease), transform .22s var(--fb-ease) !important;
}

.fbf5-footer .sp-module ul>li>a:hover,
.fbf5-footer .sppb-addon-module ul>li>a:hover,
.fbf5-footer .fbf5-footer__nav a:hover {
    color: var(--fb-gold-cta) !important;
    transform: translateX(3px);
}

.fbf5-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 82px 28px 28px;
}

/* Top */
.fbf5-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 0.88fr 1fr 1.02fr;
    gap: 46px;
    align-items: start;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fbf5-footer__brand-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.fbf5-footer__brand-logo img {
    max-width: 200px;
    height: auto;
    display: block;
}

.fbf5-footer__brand-text {
    max-width: 340px;
    margin: 0;
    font-size: 14px;
    line-height: 1.90;
    color: rgba(255, 255, 255, 0.62);
}

.fbf5-footer__title {
    margin: 0 0 20px;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
}

.fbf5-footer__nav {
    text-align: left;
}

.fbf5-footer__nav li {
    text-align: left !important;
}

.fbf5-footer__nav li+li {
    margin-top: 12px !important;
}

.fbf5-footer__nav a {
    font-size: 14px !important;
}

.fbf5-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.fbf5-footer__contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.fbf5-footer__contact-label {
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.40);
}

.fbf5-footer__contact-value,
.fbf5-footer__contact-value a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.74;
    text-align: left !important;
    text-decoration: none !important;
    transition: color .22s var(--fb-ease);
}

.fbf5-footer__contact-value a:hover {
    color: var(--fb-gold-cta) !important;
}

/* Newsletter */
.fbf5-footer__newsletter-text {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.80;
    color: rgba(255, 255, 255, 0.62);
}

.fbf5-footer__newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fbf5-footer__newsletter-input {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    border-radius: var(--fb-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    color: var(--fb-white);
    font-size: 14px;
    outline: none;
    transition:
        border-color .22s var(--fb-ease),
        box-shadow .22s var(--fb-ease);
}

.fbf5-footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.36);
}

.fbf5-footer__newsletter-input:focus {
    border-color: rgba(212, 166, 42, 0.60);
    box-shadow: 0 0 0 3px rgba(212, 166, 42, 0.10);
}

.fbf5-footer__newsletter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border: 0;
    border-radius: var(--fb-radius-sm);
    background: var(--fb-gold-cta);
    color: var(--fb-brown-900);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background .22s var(--fb-ease),
        transform .22s var(--fb-ease),
        box-shadow .22s var(--fb-ease);
}

.fbf5-footer__newsletter-btn:hover {
    background: var(--fb-gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(212, 166, 42, 0.28);
}

.fbf5-footer__newsletter-note {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.66;
    color: rgba(255, 255, 255, 0.36);
}

/* Social */
.fbf5-footer__social-wrap {
    margin-top: 28px;
    text-align: center;
}

.fbf5-footer__social-title {
    margin: 0 0 14px;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
}

.fbf5-footer__social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.fbf5-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--fb-radius-pill);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--fb-white);
    transition:
        background .22s var(--fb-ease),
        border-color .22s var(--fb-ease),
        color .22s var(--fb-ease),
        transform .22s var(--fb-ease);
}

.fbf5-footer__social a:hover {
    background: var(--fb-gold-cta);
    border-color: var(--fb-gold-cta);
    color: var(--fb-brown-900);
    transform: translateY(-2px);
}

.fbf5-footer__social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

/* Legal middle */
.fbf5-footer__middle {
    padding: 30px 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fbf5-footer__legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: start;
}

.fbf5-footer__legal-box {
    text-align: center;
    padding: 8px 12px;
}

.fbf5-footer__legal-label {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.fbf5-footer__legal-value {
    font-size: 14px;
    line-height: 1.74;
    color: rgba(255, 255, 255, 0.82);
}

/* Bottom */
.fbf5-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
}

.fbf5-footer__copyright {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.42);
}

.fbf5-footer__bottom-right {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: center;
}

.fbf5-footer__bottom-right a,
.fbf5-footer__bottom-right span {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.46);
    text-decoration: none !important;
    transition: color .2s var(--fb-ease);
}

.fbf5-footer__bottom-right a:hover {
    color: var(--fb-gold-cta) !important;
}

/* Footer — Desktop medium */
@media (max-width: 1199px) {
    .fbf5-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .fbf5-footer__legal-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Footer — Mobile */
@media (max-width: 767px) {
    .fbf5-footer__inner {
        padding: 60px 18px 26px;
    }

    .fbf5-footer__top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 32px;
    }

    .fbf5-footer__middle {
        padding: 24px 0 20px;
    }

    .fbf5-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .fbf5-footer__brand-logo img {
        max-width: 170px;
    }
}


/* ── Rimosso override globale eyebrow (usare il valore 11px per componente) ── */


/* ══════════════════════════════════════════════════
   PAGINA CASEIFICIO
   ══════════════════════════════════════════════════ */

/* ── Viewport animation system ── */
.fb-anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s cubic-bezier(.25, .46, .45, .94),
        transform .65s cubic-bezier(.25, .46, .45, .94);
}

.fb-anim.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fb-anim-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity .65s cubic-bezier(.25, .46, .45, .94),
        transform .65s cubic-bezier(.25, .46, .45, .94);
}

.fb-anim-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.fb-anim-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity .65s cubic-bezier(.25, .46, .45, .94),
        transform .65s cubic-bezier(.25, .46, .45, .94);
}

.fb-anim-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.fb-anim-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
}

.fb-anim-stagger.is-visible>*:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0s;
}

.fb-anim-stagger.is-visible>*:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: .10s;
}

.fb-anim-stagger.is-visible>*:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: .20s;
}

.fb-anim-stagger.is-visible>*:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: .30s;
}

.fb-anim-stagger.is-visible>*:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: .40s;
}

/* ── Section shell ── */
.fb-caseificio {
    padding: 100px 24px 0;
    background: var(--fb-white);
}

.fb-caseificio__inner {
    max-width: 1120px;
    margin: 0 auto;
}

/* ── Header ── */
.fb-caseificio__header {
    max-width: 820px;
    margin: 0 auto 64px;
    text-align: center;
}

.fb-caseificio__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
}

.fb-caseificio__eyebrow::before,
.fb-caseificio__eyebrow::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: rgba(209, 166, 58, 0.45);
    vertical-align: middle;
    margin: 0 8px;
}

.fb-caseificio__title {
    margin: 0 0 20px;
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--fb-brown-800);
}

.fb-caseificio__intro {
    margin: 0;
    font-size: 17px;
    line-height: 1.80;
    color: var(--fb-brown-500);
}

/* ── Stats strip ── */
.fb-caseificio__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 72px;
    border: 1px solid var(--fb-cream-border);
    border-radius: var(--fb-radius-lg);
    overflow: hidden;
    background: var(--fb-cream-100);
}

.fb-caseificio__stat {
    padding: 36px 28px;
    text-align: center;
    border-right: 1px solid var(--fb-cream-border);
    position: relative;
}

.fb-caseificio__stat:last-child {
    border-right: none;
}

.fb-caseificio__stat::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--fb-gold-cta);
    border-radius: 0 0 3px 3px;
}

.fb-caseificio__stat-num {
    display: block;
    font-size: clamp(34px, 3.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--fb-brown-800);
    line-height: 1;
    margin-bottom: 8px;
}

.fb-caseificio__stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--fb-brown-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── Narrative ── */
.fb-caseificio__narrative {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    padding: 72px 0;
    border-top: 1px solid var(--fb-cream-border);
    border-bottom: 1px solid var(--fb-cream-border);
    margin-bottom: 72px;
}

.fb-caseificio__body {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.82;
    color: var(--fb-brown-500);
}

.fb-caseificio__body:last-of-type {
    margin-bottom: 0;
}

.fb-caseificio__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--fb-gold-cta);
    color: var(--fb-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: var(--fb-radius-pill);
    margin-top: 32px;
    transition: background .2s var(--fb-ease), transform .2s;
}

.fb-caseificio__cta:hover {
    background: var(--fb-gold-hover);
    transform: translateY(-1px);
}

/* ── Feature cards ── */
.fb-caseificio__features-section {
    margin-bottom: 72px;
}

.fb-caseificio__features-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fb-caseificio__features-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--fb-cream-border);
}

.fb-caseificio__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.fb-caseificio__feature {
    background: var(--fb-white);
    border: 1px solid var(--fb-cream-border);
    border-top: 3px solid transparent;
    border-radius: var(--fb-radius-md);
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease,
        box-shadow .25s var(--fb-ease), border-top-color .25s;
}

.fb-caseificio__features.is-visible .fb-caseificio__feature:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0s;
}

.fb-caseificio__features.is-visible .fb-caseificio__feature:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: .09s;
}

.fb-caseificio__features.is-visible .fb-caseificio__feature:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: .18s;
}

.fb-caseificio__features.is-visible .fb-caseificio__feature:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: .27s;
}

.fb-caseificio__feature:hover {
    box-shadow: 0 10px 32px rgba(59, 42, 31, 0.09);
    transform: translateY(-3px);
    border-top-color: var(--fb-gold-cta);
}

.fb-caseificio__feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 166, 42, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--fb-gold-cta);
    flex-shrink: 0;
    margin-bottom: 4px;
}

.fb-caseificio__feature-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--fb-brown-800);
    letter-spacing: -0.01em;
}

.fb-caseificio__feature-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.72;
    color: var(--fb-brown-500);
}

/* ── Sustainability panel — standalone addon (modello CTA VISITE) ── */
/* Nessun background: SPPageBuilder row background image lo gestisce */
.fb-sustain-caseificio {
    position: relative;
}

.fb-sustain-caseificio::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 14, 10, 0.80);
    z-index: 0;
}

.fb-sustain-caseificio__inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 56px;
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.fb-sustain-caseificio__header {
    max-width: 680px;
}

.fb-sustain-caseificio__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-cta);
    margin-bottom: 14px;
}

.fb-sustain-caseificio__title {
    margin: 0 0 16px;
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.fb-sustain-caseificio__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.80;
    color: rgba(250, 246, 239, 0.65);
}

.fb-sustain-caseificio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.fb-sustain-caseificio__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid rgba(212, 166, 42, 0.35);
    border-radius: var(--fb-radius-md);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background .25s ease, border-top-color .25s ease;
    backdrop-filter: blur(2px);
}

.fb-sustain-caseificio__card:hover {
    background: rgba(255, 255, 255, 0.10);
    border-top-color: var(--fb-gold-cta);
}

.fb-sustain-caseificio__card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 166, 42, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--fb-gold-cta);
    margin-bottom: 4px;
    flex-shrink: 0;
}

.fb-sustain-caseificio__card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.fb-sustain-caseificio__card-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.72;
    color: rgba(250, 246, 239, 0.58);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .fb-caseificio__narrative {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0;
    }

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

    .fb-sustain-caseificio__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .fb-caseificio {
        padding: 72px 16px 0;
    }

    .fb-caseificio__features {
        grid-template-columns: 1fr;
    }

    .fb-sustain-caseificio__inner {
        padding: 56px 28px;
        gap: 36px;
    }

    .fb-caseificio__stats {
        grid-template-columns: 1fr;
        margin-bottom: 48px;
    }

    .fb-caseificio__stat {
        border-right: none;
        border-bottom: 1px solid var(--fb-cream-border);
    }

    .fb-caseificio__stat:last-child {
        border-bottom: none;
    }
}


/* ============================================================
   CONTATTI
   ============================================================ */

.fb-contatti {
    padding: 0;
    background: #fff;
}

.fb-contatti__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.fb-contatti__header {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.fb-contatti__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
    margin-bottom: 16px;
    position: relative;
    padding: 0 28px;
}

.fb-contatti__eyebrow::before,
.fb-contatti__eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--fb-gold-cta);
}

.fb-contatti__eyebrow::before {
    right: 100%;
    margin-right: -20px;
}

.fb-contatti__eyebrow::after {
    left: 100%;
    margin-left: -20px;
}

.fb-contatti__title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 700;
    color: var(--fb-brown-800);
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    line-height: 1.15;
}

.fb-contatti__intro {
    font-size: 17px;
    line-height: 1.75;
    color: var(--fb-brown-500);
    margin: 0;
}

/* Layout 2 colonne */
.fb-contatti__layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
}

/* Info column */
.fb-contatti__info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.fb-contatti__info-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.fb-contatti__info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 166, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--fb-gold-cta);
    flex-shrink: 0;
}

.fb-contatti__info-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fb-brown-500);
    margin: 0 0 4px;
}

.fb-contatti__info-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--fb-brown-800);
    margin: 0;
}

.fb-contatti__info-text a {
    color: var(--fb-brown-800);
    text-decoration: none;
    transition: color .2s;
}

.fb-contatti__info-text a:hover {
    color: var(--fb-gold-cta);
}

/* Form */
.fb-contatti__form-wrap {
    background: var(--fb-white);
    border: 1px solid var(--fb-cream-border);
    border-radius: var(--fb-radius-lg);
    padding: 48px 40px;
    box-shadow: var(--fb-shadow-md);
}

.fb-contatti__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fb-contatti__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fb-contatti__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fb-contatti__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fb-brown-500);
}

.fb-contatti__input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--fb-brown-800);
    background: var(--fb-cream-100);
    border: 1.5px solid var(--fb-cream-border);
    border-radius: var(--fb-radius-sm);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    height: 48px !important;
    border-radius: 18px !important;
}

.fb-contatti__input:focus {
    border-color: var(--fb-gold-cta);
    box-shadow: 0 0 0 3px rgba(212, 166, 42, 0.15);
}

.fb-contatti__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235f5247' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.fb-contatti__textarea {
    resize: vertical;
    min-height: 120px;
}

.fb-contatti__privacy {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--fb-brown-500);
    line-height: 1.5;
}

.fb-contatti__privacy a {
    color: var(--fb-gold-cta);
    text-decoration: none;
}

.fb-contatti__privacy a:hover {
    text-decoration: underline;
}

.fb-contatti__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--fb-gold-cta);
    color: var(--fb-brown-900);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--fb-radius-pill);
    cursor: pointer;
    transition: background .25s, transform .2s;
    font-family: inherit;
    align-self: flex-start;
}

.fb-contatti__submit:hover {
    background: var(--fb-gold-hover);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .fb-contatti__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .fb-contatti {
        padding: 0;
    }

    .fb-contatti__form-wrap {
        padding: 32px 24px;
    }

    .fb-contatti__form-section {
        padding: 56px 16px 72px;
    }

    .fb-contatti__row {
        grid-template-columns: 1fr;
    }
}


/* ─── Contatti: Info bar ─── */
.fb-contatti__infobar {
    background: var(--fb-cream-100);
    border-bottom: 1px solid var(--fb-cream-border);
    padding: 40px 24px;
}

.fb-contatti__infobar-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ─── Contatti: Map ─── */
.fb-contatti__map-wrap {
    width: 100%;
    line-height: 0;
    font-size: 0;
}

.fb-contatti__map {
    height: 420px;
    width: 100%;
    background: #e8e0d4;
}

/* Leaflet custom pin */
.fb-map-marker {
    background: none !important;
    border: none !important;
}

.fb-map-pin {
    width: 32px;
    height: 32px;
    background: var(--fb-gold-cta);
    border: 3px solid var(--fb-brown-900);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .35);
}

/* ─── Contatti: Form section ─── */
.fb-contatti__form-section {
    background: var(--fb-white);
    padding: 80px 24px 100px;
}

.fb-contatti__form-inner {
    max-width: 860px;
    margin: 0 auto;
}

.fb-contatti__form-header {
    text-align: center;
    margin-bottom: 48px;
}

/* ─── Contatti: Switch toggle ─── */
.fb-contatti__switch {
    display: inline-flex;
    align-items: center;
    background: var(--fb-cream-100);
    border: 1.5px solid var(--fb-cream-border);
    border-radius: var(--fb-radius-pill);
    padding: 5px;
    margin-top: 28px;
    gap: 4px;
}

.fb-contatti__switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border: none;
    border-radius: var(--fb-radius-pill);
    background: transparent;
    color: var(--fb-brown-500);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background .22s, color .22s, box-shadow .22s;
    white-space: nowrap;
}

.fb-contatti__switch-btn i {
    font-size: 13px;
    flex-shrink: 0;
}

.fb-contatti__switch-btn--active {
    background: var(--fb-brown-900);
    color: var(--fb-cream-100);
    box-shadow: 0 2px 8px rgba(31, 26, 23, .25);
}

.fb-contatti__switch-btn:not(.fb-contatti__switch-btn--active):hover {
    background: var(--fb-cream-border);
    color: var(--fb-brown-800);
}

/* ─── Contatti: Panels ─── */
.fb-contatti__panel {
    display: none;
}

.fb-contatti__panel--active {
    display: block;
    animation: fb-panel-in .3s ease;
}

@keyframes fb-panel-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Contatti: Booking Summary ─── */
.fb-contatti__booking-summary {
    background: rgba(212, 166, 42, .06);
    border: 1px solid rgba(212, 166, 42, .32);
    border-radius: var(--fb-radius-md);
    padding: 16px 20px 14px;
    margin-top: 12px;
    margin-bottom: 4px;
}

.fb-contatti__booking-summary__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--fb-gold-cta, #c8960a);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.fb-contatti__booking-summary__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    line-height: 1.6;
}

.fb-contatti__booking-summary__table td {
    padding: 4px 0;
    vertical-align: top;
    color: var(--fb-brown-700, #5a4030);
    border: none;
    background: none;
}

.fb-contatti__booking-summary__table td:first-child {
    width: 100px;
    font-weight: 600;
    color: var(--fb-brown-900, #2a1a08);
    white-space: nowrap;
}

.fb-contatti__booking-summary__table td:last-child {
    color: var(--fb-brown-700, #5a4030);
}

/* ─── Contatti: booking-summary error state ─── */
.fb-contatti__booking-summary--error {
    background: rgba(180, 40, 40, .05);
    border-color: rgba(180, 40, 40, .25);
}

.fb-contatti__booking-summary--error .fb-contatti__booking-summary__eyebrow {
    color: #b22222;
}

/* ─── Contatti: Visit notice ─── */
.fb-contatti__visit-notice {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(212, 166, 42, .08);
    border: 1px solid rgba(212, 166, 42, .28);
    border-radius: var(--fb-radius-md);
    padding: 16px 20px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--fb-brown-800);
    margin-bottom: 4px;
}

.fb-contatti__visit-notice i {
    color: var(--fb-gold-cta);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.fb-contatti__visit-notice p {
    margin: 0;
}

/* ─── Responsive: infobar + map ─── */
@media (max-width: 900px) {
    .fb-contatti__infobar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .fb-contatti__map {
        height: 340px;
    }
}

@media (max-width: 540px) {
    .fb-contatti__switch {
        flex-direction: column;
        border-radius: var(--fb-radius-lg);
        width: 100%;
    }

    .fb-contatti__switch-btn {
        width: 100%;
        justify-content: center;
    }

    .fb-contatti__infobar-inner {
        grid-template-columns: 1fr;
    }

    .fb-contatti__map {
        height: 260px;
    }
}


/* ============================================================
   VISITE GUIDATE
   ============================================================ */

.fb-visite {
    padding: 100px 24px 80px;
    background: var(--fb-white);
}

.fb-visite__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.fb-visite__header {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.fb-visite__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
    margin-bottom: 16px;
    position: relative;
    padding: 0 28px;
}

.fb-visite__eyebrow::before,
.fb-visite__eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--fb-gold-cta);
}

.fb-visite__eyebrow::before {
    right: 100%;
    margin-right: -20px;
}

.fb-visite__eyebrow::after {
    left: 100%;
    margin-left: -20px;
}

.fb-visite__title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 700;
    color: var(--fb-brown-800);
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    line-height: 1.15;
}

.fb-visite__intro {
    font-size: 17px;
    line-height: 1.75;
    color: var(--fb-brown-500);
    margin: 0;
}

/* Opzioni — 3 card */
.fb-visite__options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.fb-visite__option {
    background: var(--fb-cream-100);
    border: 1px solid var(--fb-cream-border);
    border-top: 3px solid var(--fb-cream-border);
    border-radius: var(--fb-radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    transition: border-top-color .25s, box-shadow .25s;
}

.fb-visite__option:hover {
    border-top-color: var(--fb-gold-cta);
    box-shadow: var(--fb-shadow-md);
}

.fb-visite__option--featured {
    background: var(--fb-brown-900);
    border-color: transparent;
    border-top-color: var(--fb-gold-cta);
    box-shadow: var(--fb-shadow-lg);
}

.fb-visite__option--featured .fb-visite__option-title,
.fb-visite__option--featured .fb-visite__option-text {
    color: var(--fb-white);
}

.fb-visite__option--featured .fb-visite__option-duration,
.fb-visite__option--featured .fb-visite__option-includes li {
    color: rgba(250, 246, 239, 0.65);
}

.fb-visite__option-badge {
    position: absolute;
    top: -14px;
    left: 28px;
    background: var(--fb-gold-cta);
    color: var(--fb-brown-900);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--fb-radius-pill);
}

.fb-visite__option-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(212, 166, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--fb-gold-cta);
    margin-bottom: 4px;
}

.fb-visite__option--featured .fb-visite__option-icon {
    background: rgba(212, 166, 42, 0.20);
}

.fb-visite__option-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--fb-brown-800);
    margin: 0;
    letter-spacing: -0.01em;
}

.fb-visite__option-duration {
    font-size: 13px;
    color: var(--fb-brown-500);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.fb-visite__option-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--fb-brown-500);
    margin: 0;
    flex-grow: 1;
}

.fb-visite__option-includes {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fb-visite__option-includes li {
    font-size: 13px;
    color: var(--fb-brown-500);
    display: flex;
    align-items: center;
    gap: 8px;
}

.fb-visite__option-includes li i {
    color: var(--fb-gold-cta);
    font-size: 11px;
    flex-shrink: 0;
}

.fb-visite__option-cta {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 24px;
    background: var(--fb-gold-cta);
    color: var(--fb-brown-900);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--fb-radius-pill);
    text-align: center;
    transition: background .25s, transform .2s;
}

.fb-visite__option-cta:hover {
    background: var(--fb-gold-hover);
    transform: translateY(-2px);
}

/* Info pratiche strip */
.fb-visite__info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--fb-cream-border);
    border-radius: var(--fb-radius-lg);
    overflow: hidden;
    background: var(--fb-cream-100);
}

.fb-visite__info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 32px 20px;
    border-right: 1px solid var(--fb-cream-border);
    font-size: 14px;
    line-height: 1.5;
    color: var(--fb-brown-500);
}

.fb-visite__info-item:last-child {
    border-right: none;
}

.fb-visite__info-item i {
    font-size: 22px;
    color: var(--fb-gold-cta);
}

.fb-visite__info-item strong {
    color: var(--fb-brown-800);
}

/* Responsive */
@media (max-width: 900px) {
    .fb-visite__options {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .fb-visite__info {
        grid-template-columns: 1fr 1fr;
    }

    .fb-visite__info-item:nth-child(2) {
        border-right: none;
    }

    .fb-visite__info-item:nth-child(3) {
        border-top: 1px solid var(--fb-cream-border);
    }

    .fb-visite__info-item:nth-child(4) {
        border-top: 1px solid var(--fb-cream-border);
        border-right: none;
    }
}

@media (max-width: 640px) {
    .fb-visite {
        padding: 72px 16px 60px;

    }

    .fb-visite__info {
        grid-template-columns: 1fr;
    }

    .fb-visite__info-item {
        border-right: none;
        border-bottom: 1px solid var(--fb-cream-border);
    }

    .fb-visite__info-item:last-child {
        border-bottom: none;
    }
}


/* ═══════════════════════════════════════════════════════════════
   TERRITORIO
   ═══════════════════════════════════════════════════════════════ */

.fb-territorio__inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 56px;
}

/* ─── Eyebrows ─── */
.fb-territorio__eyebrow,
.fb-territorio__sub-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
    margin-bottom: 14px;
}

.fb-territorio__eyebrow::before,
.fb-territorio__eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: .5;
}

/* ─── Section titles ─── */
.fb-territorio__title {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.12;
    color: var(--fb-brown-900);
    margin: 0 0 24px;
}

.fb-territorio__section-title {
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 600;
    line-height: 1.12;
    color: var(--fb-brown-900);
    margin: 0 0 24px;
}

.fb-territorio__intro-text-center {
    max-width: 780px;
    margin: 0 auto 56px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--fb-brown-500);
    text-align: center;
}

/* ─── OPENING ─── */
.fb-territorio__opening {
    background: var(--fb-white);
    padding: 100px 24px 80px;
}

.fb-territorio__header {
    text-align: center;
    margin-bottom: 60px;
}

.fb-territorio__intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 72px;
}

.fb-territorio__lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--fb-brown-800);
    margin: 0 0 24px;
    font-style: italic;
}

.fb-territorio__body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--fb-brown-500);
    margin: 0 0 18px;
}

.fb-territorio__body:last-child {
    margin-bottom: 0;
}

/* Pullquote */
.fb-territorio__pullquote-wrap {
    position: sticky;
    top: 100px;
}

.fb-territorio__pullquote {
    background: var(--fb-brown-900);
    color: var(--fb-cream-100);
    border-radius: var(--fb-radius-lg);
    padding: 40px 36px 36px;
    margin: 0 0 16px;
}

.fb-territorio__pullquote-mark {
    font-size: 72px;
    line-height: .65;
    color: var(--fb-gold-cta);
    margin-bottom: 12px;
}

.fb-territorio__pullquote p {
    font-size: 18px;
    line-height: 1.65;
    font-style: italic;
    margin: 0;
}

/* Location badge */
.fb-territorio__loc-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--fb-white);
    border-radius: var(--fb-radius-md);
    padding: 14px 18px;
    border: 1px solid var(--fb-cream-border);
}

.fb-territorio__loc-badge i {
    color: var(--fb-gold-cta);
    font-size: 20px;
    flex-shrink: 0;
}

.fb-territorio__loc-badge div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.fb-territorio__loc-badge strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--fb-brown-800);
}

.fb-territorio__loc-badge span {
    font-size: 12px;
    color: var(--fb-brown-500);
}

/* Stats strip */
.fb-territorio__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--fb-cream-border);
    border-radius: var(--fb-radius-lg);
    background: var(--fb-white);
    overflow: hidden;
}

.fb-territorio__stat {
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-right: 1px solid var(--fb-cream-border);
    text-align: center;
}

.fb-territorio__stat:last-child {
    border-right: none;
}

.fb-territorio__stat-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--fb-brown-800);
    line-height: 1;
}

.fb-territorio__stat-num sup {
    font-size: 18px;
    vertical-align: super;
}

.fb-territorio__stat-label {
    font-size: 12px;
    line-height: 1.45;
    color: var(--fb-brown-500);
}

/* ─── FOOD VALLEY (dark bg — background image impostato in SPPageBuilder sul row) ─── */
.fb-territorio__valley {
    position: relative;
    overflow: hidden;
    /* nessun background — SPPageBuilder section lo gestisce */
    padding: 60px 24px 50px;
}

.fb-territorio__valley::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 14, .72);
    z-index: 1;
}

.fb-territorio__valley .fb-territorio__inner {
    position: relative;
    z-index: 2;
}

/* 2-col layout: testo sx, glass card dx */
/* Eyebrow + titolo full-width centrato */
.fb-territorio__valley-header {
    text-align: center;
    margin-bottom: 40px;
}

.fb-territorio__valley-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

/* 3 glass card affiancate nella colonna dx */
.fb-territorio__factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.fb-territorio__valley .fb-territorio__section-title {
    color: var(--fb-cream-100);
}

.fb-territorio__valley .fb-territorio__body {
    font-size: 17px;
    line-height: 1.78;
    color: rgba(250, 246, 239, .78);
}

/* DOP products list — orizzontale */
.fb-territorio__dop-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.fb-territorio__dop-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--fb-cream-100);
}

.fb-territorio__dop-list i {
    color: var(--fb-gold-cta);
    font-size: 13px;
    flex-shrink: 0;
}

/* Valley card: obsoleto, mantenuto per eventuale uso futuro */
.fb-territorio__valley-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fb-territorio__valley-card-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
    margin: 0 0 6px;
}

/* ─── Glass card factor (verticale compatta, 3 affiancate) ─── */
.fb-territorio__factor {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 12px;
    background: rgba(250, 246, 239, .07);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(250, 246, 239, .18);
    border-radius: var(--fb-radius-lg);
    transition: background .25s ease, transform .25s ease;
}

.fb-territorio__factor:hover {
    background: rgba(250, 246, 239, .13);
    transform: translateY(-4px);
}

.fb-territorio__factor:first-of-type {
    border-top: 1px solid rgba(250, 246, 239, .18);
    margin-top: 0;
    padding-top: 20px;
}

.fb-territorio__factor-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 246, 239, .10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(250, 246, 239, .15);
    border-radius: 50%;
    color: var(--fb-gold-cta);
    font-size: 18px;
}

.fb-territorio__factor-body {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fb-territorio__factor-body strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--fb-cream-100);
    line-height: 1.3;
}

.fb-territorio__factor-body span {
    font-size: 19px;
    line-height: 1.55;
    color: rgba(250, 246, 239, .65);
}

/* ─── DOP SECTION (cream bg) ─── */
.fb-territorio__dop {
    background: var(--fb-cream-100);
    padding: 100px 24px 80px;
}

.fb-territorio__dop .fb-territorio__header {
    margin-bottom: 24px;
}

/* Pillars 4-col */
.fb-territorio__pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.fb-territorio__pillar {
    background: var(--fb-white);
    border-radius: var(--fb-radius-lg);
    padding: 32px 22px;
    border: 1px solid var(--fb-cream-border);
    transition: box-shadow .28s ease, transform .28s ease;
}

.fb-territorio__pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--fb-shadow-md);
}

.fb-territorio__pillar-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--fb-cream-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--fb-gold-cta);
    font-size: 20px;
}

.fb-territorio__pillar-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--fb-brown-800);
    margin: 0 0 10px;
}

.fb-territorio__pillar-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--fb-brown-500);
    margin: 0;
}

/* DOP Certificate banner */
.fb-territorio__dop-banner {
    background: var(--fb-brown-900);
    border-radius: var(--fb-radius-lg);
    padding: 30px 40px;
}

.fb-territorio__dop-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.fb-territorio__dop-banner-text i {
    font-size: 30px;
    color: var(--fb-gold-cta);
    flex-shrink: 0;
    margin-top: 2px;
}

.fb-territorio__dop-banner-text p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(250, 246, 239, .78);
    margin: 0;
}

.fb-territorio__dop-banner-text strong {
    color: var(--fb-cream-100);
}

/* ─── PLACE SECTION (white bg) ─── */
.fb-territorio__place {
    background: #fff;
    padding: 100px 24px 80px;
}

.fb-territorio__place-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: start;
}

.fb-territorio__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 15px;
    font-weight: 700;
    color: var(--fb-gold-cta);
    text-decoration: none;
    transition: color .2s, gap .2s;
}

.fb-territorio__cta-link:hover {
    color: var(--fb-gold-hover);
    gap: 13px;
}

/* Fact card column */
.fb-territorio__place-facts {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--fb-cream-border);
    border-radius: var(--fb-radius-lg);
    overflow: hidden;
    background: var(--fb-cream-100);
}

.fb-territorio__fact {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--fb-cream-border);
}

.fb-territorio__fact:last-child {
    border-bottom: none;
}

.fb-territorio__fact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--fb-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fb-gold-cta);
    font-size: 15px;
    flex-shrink: 0;
    border: 1px solid var(--fb-cream-border);
}

.fb-territorio__fact-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fb-territorio__fact-body strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--fb-brown-800);
}

.fb-territorio__fact-body span {
    font-size: 13px;
    line-height: 1.55;
    color: var(--fb-brown-500);
}

/* ─── VISIT CTA (background image impostato in SPPageBuilder sul row) ─── */
.fb-territorio__visit-cta {
    position: relative;
    overflow: hidden;
    /* nessun background — SPPageBuilder section lo gestisce */
    min-height: 420px;
    padding: 120px 24px;
    display: flex;
    align-items: center;
}

.fb-territorio__visit-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 14, .78);
    z-index: 1;
}

.fb-territorio__visit-cta-box {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 56px;
}

.fb-territorio__visit-cta-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(212, 166, 42, .15);
    border: 2px solid var(--fb-gold-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fb-gold-cta);
    font-size: 28px;
    flex-shrink: 0;
}

.fb-territorio__visit-cta-text h2 {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 600;
    color: var(--fb-cream-100);
    margin: 0 0 10px;
    line-height: 1.2;
}

.fb-territorio__visit-cta-text p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(250, 246, 239, .68);
    margin: 0;
}

.fb-territorio__visit-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    min-width: 216px;
}

.fb-territorio__visit-btn {
    display: inline-block;
    padding: 14px 26px;
    background: var(--fb-gold-cta);
    color: var(--fb-brown-900);
    border-radius: var(--fb-radius-pill);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-align: center;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.fb-territorio__visit-btn:hover {
    background: var(--fb-gold-hover);
    transform: translateY(-2px);
}

.fb-territorio__visit-link {
    display: inline-block;
    text-align: center;
    font-size: 13px;
    color: rgba(250, 246, 239, .55);
    text-decoration: none;
    transition: color .2s;
}

.fb-territorio__visit-link:hover {
    color: var(--fb-cream-100);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .fb-territorio__inner {
        padding: 0 32px;
    }

    .fb-territorio__visit-cta-box {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {

    .fb-territorio__intro-grid,
    .fb-territorio__valley-grid,
    .fb-territorio__place-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fb-territorio__pullquote-wrap {
        position: static;
    }

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

    .fb-territorio__stat:nth-child(2) {
        border-right: none;
    }

    .fb-territorio__stat:nth-child(3),
    .fb-territorio__stat:nth-child(4) {
        border-top: 1px solid var(--fb-cream-border);
    }

    .fb-territorio__stat:nth-child(4) {
        border-right: none;
    }

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

    .fb-territorio__visit-cta-box {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
        padding: 0 24px;
    }

    .fb-territorio__visit-cta-icon {
        margin: 0 auto;
    }

    .fb-territorio__visit-cta-actions {
        align-items: center;
        min-width: 0;
        width: 100%;
    }

    .fb-territorio__visit-btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 640px) {

    .fb-territorio__opening,
    .fb-territorio__valley,
    .fb-territorio__dop,
    .fb-territorio__place {
        padding: 72px 16px 56px;
    }

    .fb-territorio__inner {
        padding: 0;
    }

    .fb-territorio__pillars {
        grid-template-columns: 1fr;
    }

    .fb-territorio__dop-banner-text {
        flex-direction: column;
        gap: 14px;
    }

    .fb-territorio__dop-banner {
        padding: 24px 20px;
    }

    .fb-territorio__visit-cta {
        padding: 56px 16px;
    }

    .fb-territorio__visit-cta-box {
        padding: 0;
    }
}


/* ============================================================
   SEO CROSS-NAV BLOCK (RAW HTML)
   ============================================================ */

.fb-seo-nav {
    --fb-seo-bg-image: none;
    --fb-seo-bg-opacity: 0;
    --fb-seo-card-shift: 18px;
    --fb-seo-card-duration: 700ms;
    --fb-seo-card-delay-step: 80ms;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    grid-template-areas:
        "eyebrow links"
        "title links"
        "text links";
    column-gap: 34px;
    row-gap: 0;
    background: radial-gradient(120% 130% at 6% 4%, rgba(255, 255, 255, 0.9) 0%, rgba(250, 246, 239, 0.7) 46%, rgba(248, 242, 232, 0.82) 100%);
    border: 1px solid var(--fb-cream-border);
    border-radius: var(--fb-radius-lg);
    padding: 30px;
    box-shadow: 0 16px 36px rgba(77, 48, 21, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.fb-seo-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: var(--fb-seo-bg-image);
    background-position: center;
    background-size: cover;
    opacity: var(--fb-seo-bg-opacity);
    transform: scale(1.04);
}

.fb-seo-nav::after {
    content: "";
    position: absolute;
    inset: -30% -18%;
    z-index: -2;
    background:
        radial-gradient(58% 44% at 15% 20%, rgba(211, 166, 58, 0.18) 0%, rgba(211, 166, 58, 0) 72%),
        radial-gradient(54% 42% at 86% 78%, rgba(139, 94, 60, 0.12) 0%, rgba(139, 94, 60, 0) 72%);
    pointer-events: none;
}

.fb-seo-nav>* {
    position: relative;
    z-index: 1;
}

.fb-seo-nav--interactive {
    --fb-seo-bg-opacity: 0.28;
}

/* Optional per-module background image from SP Page Builder:
   set inline style like --fb-seo-bg-image:url('/path/image.jpg') on .fb-seo-nav */

.fb-seo-nav__eyebrow {
    grid-area: eyebrow;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 11px !important;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fb-gold-dark-eyebrow);
}

.fb-seo-nav__eyebrow::before,
.fb-seo-nav__eyebrow::after {
    content: "";
    width: 24px;
    height: 1px;
    background: rgba(209, 166, 58, 0.45);
}

.fb-seo-nav__title {
    grid-area: title;
    margin: 0 0 14px;
    max-width: 18ch;
    font-size: clamp(24px, 2.4vw, 36px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--fb-brown-800);
}

.fb-seo-nav__text {
    grid-area: text;
    margin: 0 0 22px;
    max-width: 70ch;
    font-size: 16px;
    line-height: 1.8;
    color: var(--fb-brown-500);
}

.fb-seo-nav__links {
    grid-area: links;
    align-self: center;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.fb-seo-nav__links li {
    margin: 0;
    padding: 0;
    transition: transform .45s var(--fb-ease), opacity .45s var(--fb-ease), filter .45s var(--fb-ease);
}

.fb-seo-nav__links a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    min-height: 76px;
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--fb-radius-md);
    background: var(--fb-white);
    border: 1px solid var(--fb-cream-border);
    font-size: 13px;
    color: var(--fb-brown-700);
    text-decoration: none;
    transition: color .25s var(--fb-ease), border-color .25s var(--fb-ease), background .25s var(--fb-ease), transform .25s var(--fb-ease), box-shadow .25s var(--fb-ease);
}

.fb-seo-nav__links a::after {
    content: "Approfondisci \2192";
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--fb-gold-cta);
    opacity: .9;
    margin-top: 2px;
}

.fb-seo-nav__link-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--fb-brown-800);
}

.fb-seo-nav__link-text {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    color: var(--fb-brown-500);
}

.fb-seo-nav__links a:hover {
    color: var(--fb-gold-cta);
    transform: translateY(-4px);
    background: var(--fb-cream-100);
    border-color: var(--fb-gold-cta);
    box-shadow: 0 14px 22px rgba(112, 74, 45, 0.16);
}

.fb-seo-nav__links a:focus-visible {
    outline: 2px solid rgba(212, 166, 42, 0.45);
    outline-offset: 2px;
    border-color: var(--fb-gold-cta);
}

.fb-seo-nav__links li:nth-child(1) {
    transition-delay: calc(var(--fb-seo-card-delay-step) * 1);
}

.fb-seo-nav__links li:nth-child(2) {
    transition-delay: calc(var(--fb-seo-card-delay-step) * 2);
}

.fb-seo-nav__links li:nth-child(3) {
    transition-delay: calc(var(--fb-seo-card-delay-step) * 3);
}

.fb-seo-nav__links li:nth-child(4) {
    transition-delay: calc(var(--fb-seo-card-delay-step) * 4);
}

.fb-seo-nav__links li:nth-child(5) {
    transition-delay: calc(var(--fb-seo-card-delay-step) * 5);
}

.fb-seo-nav__links li:nth-child(6) {
    transition-delay: calc(var(--fb-seo-card-delay-step) * 6);
}

@supports (animation-timeline: view()) {
    .fb-seo-nav--interactive {
        animation: fbSeoSectionReveal both linear;
        animation-timeline: view();
        animation-range: entry 10% cover 40%;
    }

    .fb-seo-nav--interactive .fb-seo-nav__links li {
        opacity: 0.2;
        transform: translateY(var(--fb-seo-card-shift)) scale(0.985);
        filter: blur(1.5px);
        animation: fbSeoCardReveal var(--fb-seo-card-duration) var(--fb-ease) forwards;
        animation-timeline: view();
        animation-range: entry 18% cover 42%;
    }
}

@keyframes fbSeoSectionReveal {
    from {
        transform: translateY(22px);
        opacity: 0.45;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fbSeoCardReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@media (max-width: 767px) {
    .fb-seo-nav {
        grid-template-columns: 1fr;
        grid-template-areas:
            "eyebrow"
            "title"
            "text"
            "links";
        row-gap: 0;
        padding: 24px 20px;
        box-shadow: 0 10px 24px rgba(77, 48, 21, 0.12);
    }

    .fb-seo-nav__text {
        margin-bottom: 16px;
        font-size: 15px;
    }

    .fb-seo-nav__links {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .fb-seo-nav__links a {
        min-height: 70px;
        font-size: 13px;
        padding: 0 12px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .fb-seo-nav__link-title {
        font-size: 13px;
    }

    .fb-seo-nav__link-text {
        font-size: 11px;
    }
}

/* ================================================================
   IL PARMIGIANO REGGIANO — fb-pr-* Component System
   ================================================================ */

/* Hero — em gold italic: applies to ALL fb-pr-hero-* variants */
.fb-pr-hero .fb-page-hero__title em,
.fb-pr-hero-cose .fb-page-hero__title em,
.fb-pr-hero-produzione .fb-page-hero__title em,
.fb-pr-hero-stagionatura .fb-page-hero__title em,
.fb-pr-hero-analisi .fb-page-hero__title em {
    font-style: italic;
    color: var(--fb-gold);
}

/* Hero body text (secondary paragraph below subtitle) */
.fb-page-hero__body {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
    margin-top: 10px;
}

/* ================================================================
   INTRO
   ================================================================ */
.fb-pr-intro {
    padding: 0px 0 0px;
    background: var(--fb-cream-100);
    overflow: hidden;
}

.fb-pr-intro__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: center;
}

.fb-pr-intro__eyebrow {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--fb-gold);
    margin-bottom: 18px;
}

.fb-pr-intro__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--fb-brown-900);
    margin: 0 0 24px;
}

.fb-pr-intro__lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #3d3530;
    margin-bottom: 14px;
    font-weight: 500;
}

.fb-pr-intro__body {
    font-size: 1rem;
    line-height: 1.75;
    color: #5a4e46;
    margin-bottom: 40px;
}

.fb-pr-intro__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--fb-brown-900);
    border-radius: var(--fb-radius-md);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .18);
}

.fb-pr-intro__stat {
    padding: 28px 16px 24px;
    text-align: center;
    border-right: 1px solid rgba(200, 150, 42, .18);
    transition: background .3s var(--fb-ease);
    position: relative;
}

.fb-pr-intro__stat:last-child {
    border-right: none;
}

.fb-pr-intro__stat:hover {
    background: rgba(200, 150, 42, .08);
}

/* separatore decorativo in alto */
.fb-pr-intro__stat::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--fb-gold);
    margin: 0 auto 14px;
    border-radius: 2px;
    opacity: .7;
}

.fb-pr-intro__stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--fb-gold);
    line-height: 1;
}

.fb-pr-intro__stat-unit {
    font-size: 1.1rem;
    font-weight: 400;
}

.fb-pr-intro__stat-label {
    display: block;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .72);
    margin-top: 8px;
    line-height: 1.4;
}

.fb-pr-intro__visual {
    position: relative;
}

.fb-pr-intro__img-wrap {
    position: relative;
}

.fb-pr-intro__img {
    width: 100%;
    height: 580px;
    background-size: cover;
    background-position: center;
    border-radius: var(--fb-radius-lg);
    box-shadow: var(--fb-shadow-lg);
}

.fb-pr-intro__badge {
    position: absolute;
    bottom: 20px;
    left: -24px;
    background: var(--fb-brown-900);
    color: #fff;
    padding: 16px 20px;
    border-radius: var(--fb-radius-md);
    font-size: 12px;
    line-height: 1.5;
    box-shadow: var(--fb-shadow-md);
    max-width: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.fb-pr-intro__badge-img {
    width: 100%;
    max-width: 170px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .3));
}

.fb-pr-intro__badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--fb-gold);
    line-height: 1;
    margin-bottom: 2px;
}

/* ================================================================
   PANEL NAV
   ================================================================ */
.fb-pr-panel-nav {
    background: var(--fb-brown-900);
}

.fb-pr-panel-nav__label {
    text-align: center;
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    padding: 28px 0 20px;
    font-family: 'Playfair Display', serif;
}

.fb-pr-panel-nav__track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 580px;
    overflow: hidden;
}

.fb-pr-panel-nav__panel {
    position: relative;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, .08);
    transition: flex .6s var(--fb-ease);
}

.fb-pr-panel-nav__panel:last-child {
    border-right: none;
}

.fb-pr-panel-nav__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .7s var(--fb-ease);
}

.fb-pr-panel-nav__panel:hover .fb-pr-panel-nav__bg {
    transform: scale(1.06);
}

.fb-pr-panel-nav__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 10, 8, .85) 0%, rgba(15, 10, 8, .35) 60%, rgba(15, 10, 8, .1) 100%);
    transition: background .5s var(--fb-ease);
}

.fb-pr-panel-nav__panel:hover .fb-pr-panel-nav__overlay {
    background: linear-gradient(to top, rgba(15, 10, 8, .7) 0%, rgba(15, 10, 8, .25) 70%, rgba(15, 10, 8, .05) 100%);
}

.fb-pr-panel-nav__panel--active {
    pointer-events: none;
    cursor: default;
}

.fb-pr-panel-nav__panel--active .fb-pr-panel-nav__bg {
    filter: grayscale(.75) brightness(.55);
}

.fb-pr-panel-nav__panel--active .fb-pr-panel-nav__overlay {
    background: linear-gradient(to top, rgba(15, 10, 8, .8) 0%, rgba(15, 10, 8, .55) 50%, rgba(15, 10, 8, .35) 100%);
}

.fb-pr-panel-nav__content {
    position: relative;
    z-index: 1;
    padding: 32px 28px;
    width: 100%;
}

.fb-pr-panel-nav__num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    letter-spacing: .25em;
    color: var(--fb-gold);
    margin-bottom: 10px;
}

.fb-pr-panel-nav__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 0;
}

.fb-pr-panel-nav__sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
    margin: 10px 0 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .5s var(--fb-ease), opacity .4s var(--fb-ease);
}

.fb-pr-panel-nav__panel--active .fb-pr-panel-nav__sub,
.fb-pr-panel-nav__panel:hover .fb-pr-panel-nav__sub {
    max-height: 100px;
    opacity: 1;
}

.fb-pr-panel-nav__arrow {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--fb-gold);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s var(--fb-ease), transform .35s var(--fb-ease);
}

.fb-pr-panel-nav__panel:hover .fb-pr-panel-nav__arrow {
    opacity: 1;
    transform: translateY(0);
}

.fb-pr-panel-nav__panel--active .fb-pr-panel-nav__arrow {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
    background: var(--fb-gold);
    padding: 4px 10px;
    border-radius: var(--fb-radius-pill);
    font-size: 11px;
}

.fb-pr-panel-nav__panel--active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--fb-gold);
    z-index: 2;
}

/* ================================================================
   HISTORY
   ================================================================ */
.fb-pr-history {
    padding: 96px 0;
    background: #fff;
    overflow: hidden;
}

.fb-pr-history__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fb-pr-history__img-wrap {
    position: relative;
}

.fb-pr-history__img {
    width: 100%;
    height: 560px;
    background-size: cover;
    background-position: center;
    border-radius: var(--fb-radius-lg);
    box-shadow: var(--fb-shadow-lg);
}

.fb-pr-history__img-overlay {
    position: absolute;
    inset: 0;
    border-radius: var(--fb-radius-lg);
    background: linear-gradient(to top, rgba(31, 26, 23, .6) 0%, transparent 50%);
}

.fb-pr-history__img-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: rgba(255, 255, 255, .8);
    font-size: 12px;
    line-height: 1.5;
    font-style: italic;
}

.fb-pr-history__eyebrow {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--fb-gold);
    margin-bottom: 18px;
}

.fb-pr-history__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--fb-brown-900);
    margin: 0 0 24px;
}

.fb-pr-history__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a4e46;
    margin-bottom: 14px;
}

.fb-pr-history__milestones {
    margin-top: 40px;
    position: relative;
    padding-left: 24px;
}

.fb-pr-history__milestones::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(to bottom, var(--fb-gold), rgba(200, 150, 42, .2));
}

.fb-pr-history__milestone {
    position: relative;
    padding: 0 0 28px 20px;
}

.fb-pr-history__milestone::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--fb-gold);
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--fb-gold);
}

.fb-pr-history__milestone:last-child {
    padding-bottom: 0;
}

.fb-pr-history__milestone-year {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--fb-gold);
    letter-spacing: .06em;
    margin-bottom: 4px;
}

.fb-pr-history__milestone-text {
    font-size: 14px;
    line-height: 1.65;
    color: #6a5e56;
}

/* ================================================================
   DOP — 5 Province
   ================================================================ */
.fb-pr-dop {
    padding: 60px 0;
    background: var(--fb-cream-100);
}

.fb-pr-dop__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.fb-pr-dop__header {
    text-align: center;
    margin-bottom: 32px;
}

.fb-pr-dop__eyebrow {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--fb-gold);
    margin-bottom: 16px;
}

.fb-pr-dop__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--fb-brown-900);
    line-height: 1.2;
    margin: 0 0 16px;
}

.fb-pr-dop__subtitle {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--fb-brown-500);
    max-width: 640px;
    margin: 0 auto;
}

.fb-pr-dop__body {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 32px;
}

.fb-pr-dop__map-svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.fb-pr-dop__map-note {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.6;
    color: var(--fb-brown-300);
    text-align: center;
}

.fb-pr-dop__provinces {
    display: flex;
    flex-direction: column;
    gap: 8px;
    counter-reset: province-cnt;
}

.fb-pr-dop__province {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--fb-white);
    border: 1px solid rgba(200, 150, 42, .25);
    border-radius: var(--fb-radius-md);
    padding: 10px 16px;
    text-align: left;
    box-shadow: var(--fb-shadow-xs);
    transition: background .35s var(--fb-ease), box-shadow .35s var(--fb-ease);
    counter-increment: province-cnt;
}

.fb-pr-dop__province::before {
    content: "0" counter(province-cnt);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--fb-gold);
    flex-shrink: 0;
    width: 26px;
    text-align: center;
}

.fb-pr-dop__province:hover {
    background: var(--fb-cream-200);
    box-shadow: var(--fb-shadow-sm);
}

.fb-pr-dop__province-icon {
    display: none;
}

.fb-pr-dop__province-info {
    flex: 1;
    min-width: 0;
}

.fb-pr-dop__province-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--fb-gold);
    margin-bottom: 4px;
}

.fb-pr-dop__province-note {
    font-size: 12px;
    line-height: 1.6;
    color: var(--fb-brown-300);
}

.fb-pr-dop__certbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fb-pr-dop__cert {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--fb-white);
    border: 1px solid rgba(200, 150, 42, .25);
    border-radius: var(--fb-radius-md);
    padding: 20px;
    box-shadow: var(--fb-shadow-xs);
}

.fb-pr-dop__cert-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.fb-pr-dop__cert-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

.fb-pr-dop__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.fb-pr-dop__pr-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.fb-pr-dop__cert-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--fb-gold);
    margin-bottom: 8px;
}

.fb-pr-dop__cert-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--fb-brown-500);
}

/* ================================================================
   NUMBERS
   ================================================================ */
.fb-pr-numbers {
    padding: 96px 0;
    background: var(--fb-cream-100);
}

.fb-pr-numbers__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.fb-pr-numbers__header {
    text-align: center;
    margin-bottom: 60px;
}

.fb-pr-numbers__eyebrow {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--fb-gold);
    margin-bottom: 14px;
}

.fb-pr-numbers__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--fb-brown-900);
    line-height: 1.2;
    margin: 0;
}

.fb-pr-numbers__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid rgba(200, 150, 42, .2);
    border-radius: var(--fb-radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--fb-shadow-md);
}

.fb-pr-numbers__item {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid rgba(200, 150, 42, .15);
    transition: background .3s var(--fb-ease);
}

.fb-pr-numbers__item:last-child {
    border-right: none;
}

.fb-pr-numbers__item:hover {
    background: var(--fb-cream-100);
}

.fb-pr-numbers__value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--fb-brown-900);
    line-height: 1;
    margin-bottom: 6px;
}

.fb-pr-numbers__unit {
    font-size: 1.2rem;
    color: var(--fb-gold);
}

.fb-pr-numbers__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #3d3530;
    margin-bottom: 4px;
}

.fb-pr-numbers__sub {
    display: block;
    font-size: 11px;
    color: #9a8e86;
    letter-spacing: .04em;
}

/* ================================================================
   NUTRITIONAL
   ================================================================ */
.fb-pr-nutritional {
    padding: 96px 0;
    background: #fff;
    overflow: hidden;
}

.fb-pr-nutritional__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 80px;
    align-items: center;
}

.fb-pr-nutritional__eyebrow {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--fb-gold);
    margin-bottom: 18px;
}

.fb-pr-nutritional__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--fb-brown-900);
    line-height: 1.2;
    margin: 0 0 20px;
}

.fb-pr-nutritional__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a4e46;
    margin-bottom: 14px;
}

.fb-pr-nutritional__cards {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fb-pr-nutritional__card {
    background: var(--fb-cream-100);
    border: 1px solid rgba(200, 150, 42, .15);
    border-radius: var(--fb-radius-md);
    padding: 18px 16px;
    transition: box-shadow .3s var(--fb-ease), transform .3s var(--fb-ease);
}

.fb-pr-nutritional__card:hover {
    box-shadow: var(--fb-shadow-sm);
    transform: translateY(-2px);
}

.fb-pr-nutritional__card-icon {
    font-size: 1.5rem;
    color: var(--fb-gold);
    margin-bottom: 8px;
    display: block;
}

.fb-pr-nutritional__card-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--fb-brown-900);
    margin-bottom: 4px;
}

.fb-pr-nutritional__card-text {
    font-size: 12px;
    line-height: 1.6;
    color: #7a6e66;
}

.fb-pr-nutritional__img-wrap {
    position: relative;
}

.fb-pr-nutritional__img {
    width: 100%;
    height: 580px;
    background-size: cover;
    background-position: center;
    border-radius: var(--fb-radius-lg);
    box-shadow: var(--fb-shadow-lg);
}

/* ================================================================
   QUOTE
   ================================================================ */
.fb-pr-quote {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Inside a slider panel: fill the full panel height */
@media (min-width: 1025px) {
    .fb-panel .fb-pr-quote {
        min-height: calc(100vh - var(--fb-header-h, 90px));
    }
}

.fb-pr-quote__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.fb-pr-quote:hover .fb-pr-quote__bg {
    transform: scale(1);
}

.fb-pr-quote__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 13, 8, .75);
}

.fb-pr-quote__inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 80px 40px;
    text-align: center;
}

.fb-pr-quote__mark {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--fb-gold);
    line-height: .5;
    display: block;
    margin-bottom: 16px;
    opacity: .4;
}

.fb-pr-quote__text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: rgba(255, 255, 255, .9);
    line-height: 1.7;
    margin: 0 0 28px;
}

.fb-pr-quote__source {
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--fb-gold);
}

.fb-pr-quote__source em {
    font-style: normal;
    color: rgba(255, 255, 255, .5);
    margin-left: 4px;
}

/* Alias usato in PRODUZIONE / STAGIONATURA (class diversa da __inner) */
.fb-pr-quote__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 80px 40px;
    text-align: center;
}

.fb-pr-quote__author {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--fb-gold);
    font-style: normal;
}

/* ================================================================
   BRAND CTA
   ================================================================ */
.fb-pr-brand {
    padding: 96px 0;
    background: var(--fb-cream-100);
}

.fb-pr-brand__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.fb-pr-brand__eyebrow {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--fb-gold);
    margin-bottom: 16px;
}

.fb-pr-brand__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--fb-brown-900);
    line-height: 1.25;
    margin: 0 0 20px;
}

.fb-pr-brand__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a4e46;
    margin-bottom: 36px;
}

.fb-pr-brand__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.fb-pr-brand__cta {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--fb-radius-pill);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .06em;
    text-decoration: none;
    transition: all .3s var(--fb-ease);
}

.fb-pr-brand__cta--primary {
    background: var(--fb-gold);
    color: #fff;
    box-shadow: var(--fb-shadow-sm);
}

.fb-pr-brand__cta--primary:hover {
    background: #1a1008;
    color: #fff;
    box-shadow: var(--fb-shadow-md);
    transform: translateY(-2px);
}

.fb-pr-brand__cta--secondary {
    background: transparent;
    color: var(--fb-brown-900);
    border: 2px solid var(--fb-gold);
}

.fb-pr-brand__cta--secondary:hover {
    background: var(--fb-gold);
    color: #fff;
}

/* ================================================================
   RESPONSIVE — fb-pr-*
   ================================================================ */
@media (max-width: 1100px) {
    .fb-pr-intro__inner {
        grid-template-columns: 1fr;
    }

    .fb-pr-intro__visual {
        display: none;
    }

    .fb-pr-intro__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .fb-pr-history__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fb-pr-history__img-wrap {
        display: none;
    }

    .fb-pr-nutritional__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fb-pr-nutritional__img-wrap {
        display: none;
    }

    .fb-pr-dop__body {
        grid-template-columns: 1fr;
    }

    .fb-pr-numbers__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fb-pr-numbers__item:nth-child(3) {
        border-right: none;
    }

    .fb-pr-numbers__item:nth-child(4),
    .fb-pr-numbers__item:nth-child(5) {
        border-top: 1px solid rgba(200, 150, 42, .15);
    }

    .fb-pr-numbers__item:nth-child(5) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .fb-pr-intro {
        padding: 60px 0 48px;
    }

    .fb-pr-intro__inner,
    .fb-pr-history__inner,
    .fb-pr-nutritional__inner {
        padding: 0 20px;
    }

    .fb-pr-panel-nav__track {
        grid-template-columns: repeat(5, 78vw);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        height: 440px;
        scrollbar-width: none;
    }

    .fb-pr-panel-nav__track::-webkit-scrollbar {
        display: none;
    }

    .fb-pr-panel-nav__panel {
        scroll-snap-align: start;
    }

    .fb-pr-panel-nav__sub {
        max-height: 100px;
        opacity: 1;
    }

    .fb-pr-dop__certbox {
        grid-template-columns: 1fr;
    }

    .fb-pr-numbers__grid {
        grid-template-columns: 1fr 1fr;
    }

    .fb-pr-numbers__item:nth-child(odd) {
        border-right: 1px solid rgba(200, 150, 42, .15);
    }

    .fb-pr-numbers__item:nth-child(even) {
        border-right: none;
    }

    .fb-pr-numbers__item:nth-child(n+3) {
        border-top: 1px solid rgba(200, 150, 42, .15);
    }

    .fb-pr-nutritional__cards {
        grid-template-columns: 1fr;
    }

    .fb-pr-history,
    .fb-pr-dop,
    .fb-pr-numbers,
    .fb-pr-nutritional,
    .fb-pr-brand {
        padding: 60px 0;
    }

    .fb-pr-dop__inner,
    .fb-pr-numbers__inner,
    .fb-pr-brand__inner {
        padding: 0 20px;
    }

    .fb-pr-quote__inner {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .fb-pr-numbers__grid {
        grid-template-columns: 1fr;
    }

    .fb-pr-numbers__item {
        border-right: none !important;
        border-top: 1px solid rgba(200, 150, 42, .12) !important;
    }

    .fb-pr-numbers__item:first-child {
        border-top: none !important;
    }

    .fb-pr-panel-nav__track {
        grid-template-columns: repeat(5, 88vw);
        height: 380px;
    }
}

/* ================================================================
   STEP PANEL — fb-pr-step
   Layout split 50/50 con immagine e testo, per il processo produttivo
   ================================================================ */
.fb-pr-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 90px);
    overflow: hidden;
}

.fb-pr-step--reverse {
    direction: rtl;
}

.fb-pr-step--reverse>* {
    direction: ltr;
}

.fb-pr-step__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px 56px 30px 72px;
    position: relative;
    overflow: hidden;
}

.fb-pr-step__num {
    position: absolute;
    top: -10px;
    left: 32px;
    font-size: clamp(6rem, 11vw, 10rem);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--fb-gold);
    opacity: .06;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.04em;
}

.fb-pr-step__discipline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(180, 140, 80, .1);
    border: 1px solid rgba(180, 140, 80, .25);
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--fb-brown, #6b4c1e);
    margin-bottom: 14px;
    width: fit-content;
}

.fb-pr-step__discipline i {
    color: var(--fb-gold);
    font-size: .8rem;
}

.fb-pr-step__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--fb-gold);
    margin-bottom: 10px;
}

.fb-pr-step__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 700;
    color: var(--fb-brown, #3a2510);
    line-height: 1.2;
    margin: 0 0 18px;
}

.fb-pr-step__body {
    font-size: clamp(.95rem, 1.1vw, 1.08rem);
    line-height: 1.8;
    color: var(--fb-text, #3a3028);
    margin: 0 0 24px;
    max-width: none;
}

.fb-pr-step__fact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(180, 140, 80, .07);
    border-left: 3px solid var(--fb-gold);
    border-radius: 0 6px 6px 0;
    font-size: .9rem;
    color: var(--fb-text, #3a3028);
    line-height: 1.55;
    max-width: none;
}

.fb-pr-step__fact i {
    color: var(--fb-gold);
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.fb-pr-step__img-wrap {
    position: relative;
    overflow: hidden;
}

.fb-pr-step__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 9s ease;
}

.fb-pr-step:hover .fb-pr-step__img {
    transform: scale(1.05);
}

.fb-pr-step__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 13, 8, .28) 0%, transparent 55%);
}

.fb-pr-step__badge {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: var(--fb-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 8px 28px rgba(180, 140, 80, .45);
    letter-spacing: -.01em;
}

/* ── CTA button hub step ── */
.fb-pr-step__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 14px 28px;
    background: var(--fb-gold-cta);
    color: var(--fb-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: var(--fb-radius-pill);
    width: fit-content;
    transition: background .2s var(--fb-ease), transform .2s, gap .2s;
}

.fb-pr-step__cta:hover {
    background: #1a1008;
    color: var(--fb-white);
    transform: translateY(-2px);
    gap: 14px;
}

/* ── BRIDGE — pannello di continuazione verso la stagionatura ── */
.fb-pr-bridge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 90px);
    text-align: center;
    overflow: hidden;
    padding: 60px 40px;
}

.fb-pr-bridge__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 9s ease;
}

.fb-pr-bridge:hover .fb-pr-bridge__bg {
    transform: scale(1);
}

.fb-pr-bridge__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(20, 13, 8, .72) 0%,
            rgba(20, 13, 8, .80) 100%);
}

.fb-pr-bridge__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.fb-pr-bridge__eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--fb-gold);
    margin-bottom: 20px;
}

.fb-pr-bridge__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 16px;
}

.fb-pr-bridge__sub {
    font-size: clamp(.9rem, 1.2vw, 1.1rem);
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
    margin: 0 0 40px;
}

.fb-pr-bridge__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.fb-pr-bridge__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-decoration: none;
    transition: all .25s ease;
}

.fb-pr-bridge__cta--primary {
    background: var(--fb-gold);
    color: #fff;
    box-shadow: 0 6px 24px rgba(180, 140, 80, .4);
}

.fb-pr-bridge__cta--primary:hover {
    background: #c8a03a;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(180, 140, 80, .55);
    color: #fff;
}

.fb-pr-bridge__cta--secondary {
    background: transparent;
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .35);
}

.fb-pr-bridge__cta--secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .65);
    color: #fff;
    transform: translateY(-2px);
}

.fb-pr-bridge__divider {
    width: 48px;
    height: 2px;
    background: var(--fb-gold);
    margin: 0 auto 24px;
    opacity: .6;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .fb-pr-step {
        grid-template-columns: 1fr;
        grid-template-rows: 40vh auto;
        min-height: auto;
        /* rimuove min-height desktop (100vh) su mobile */
    }

    .fb-pr-step--reverse {
        direction: ltr;
    }

    .fb-pr-step__img-wrap {
        min-height: 40vh;
        order: -1;
        /* immagine sempre prima del testo su mobile (tutti i pannelli) */
    }

    .fb-pr-step__text {
        padding: 36px 28px 40px;
    }

    .fb-pr-step__body {
        max-width: 100%;
    }

    .fb-pr-step__fact {
        max-width: 100%;
    }

    .fb-pr-step__num {
        font-size: 5rem;
        top: -8px;
        left: 20px;
    }
}

@media (max-width: 600px) {
    .fb-pr-bridge__ctas {
        flex-direction: column;
        align-items: center;
    }

    .fb-pr-bridge__cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ── Step/Bridge: SPPB container full-width · rimuove barra e spaziature ── */
.fb-panel:has(.fb-pr-step) .sppb-container,
.fb-panel:has(.fb-pr-bridge) .sppb-container {
    max-width: 100%;
    padding: 0;
    width: 100%;
}

.fb-panel:has(.fb-pr-step) .sppb-row,
.fb-panel:has(.fb-pr-bridge) .sppb-row {
    margin: 0 !important;
}

.fb-panel:has(.fb-pr-step) [class*="sppb-col-"],
.fb-panel:has(.fb-pr-bridge) [class*="sppb-col-"] {
    padding: 0 !important;
}

.fb-panel:has(.fb-pr-step) .sppb-addon-content,
.fb-panel:has(.fb-pr-bridge) .sppb-addon-content {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.fb-panel:has(.fb-pr-step) .sppb-container-inner,
.fb-panel:has(.fb-pr-bridge) .sppb-container-inner {
    overflow: hidden;
}

/* ── fb-pr-step logos (DOP, PR, Consorzio) ─────────────────── */
.fb-pr-step__logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.fb-pr-step__logos .fb-pr-step__logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    opacity: .85;
    transition: opacity .2s;
}

.fb-pr-step__logos .fb-pr-step__logo-img:hover {
    opacity: 1;
}

/* ── fb-pr-step --map: lato immagine mostra mappa geografica ── */
.fb-pr-step__img-wrap--map {
    background: #f7f2ec;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 40px 60px;
    box-sizing: border-box;
}

.fb-pr-step__img-wrap--map .fb-pr-step__img,
.fb-pr-step__img-wrap--map .fb-pr-step__img-overlay {
    display: none;
}

.fb-pr-step__map-img {
    max-width: 88%;
    max-height: 58vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .12));
}

.fb-pr-step__map-note {
    margin-top: 14px;
    font-size: .75rem;
    color: var(--fb-text-muted, #8a7a6a);
    text-align: center;
    letter-spacing: .02em;
    line-height: 1.4;
}

.fb-pr-step__discipline-dop {
    height: 65px;
    width: auto;
    vertical-align: middle;
    margin-right: 4px;
    margin-top: -2px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .fb-pr-step__img-wrap--map {
        padding: 32px 24px 40px;
        min-height: 300px;
    }

    .fb-pr-step__map-img {
        max-width: 95%;
        max-height: 280px;
    }
}


/* ═══════════════════════════════════════════════════════════
   FB-PR-HUB-INTRO — Pannello intro percorso (pagina hub IL PARMIGIANO)
   ═══════════════════════════════════════════════════════════ */
.fb-pr-hub-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 55vh;
    padding: 80px 40px;
    text-align: center;
}

.fb-pr-hub-intro__inner {
    max-width: 700px;
    margin: 0 auto;
}

.fb-pr-hub-intro__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fb-gold, #8b6914);
    margin-bottom: 18px;
    font-weight: 600;
}

.fb-pr-hub-intro__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--fb-dark, #1a1a1a);
    margin-bottom: 28px;
}

.fb-pr-hub-intro__lead {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 18px;
    font-style: italic;
}

.fb-pr-hub-intro__body {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 16px;
}

.fb-pr-hub-intro__hint {
    font-size: 0.95rem;
    color: var(--fb-gold, #8b6914);
    font-weight: 600;
    margin-top: 8px;
}

@media (max-width: 767px) {
    .fb-pr-hub-intro {
        min-height: auto;
        padding: 56px 24px;
    }
}


/* ═══════════════════════════════════════════════════════════
   FIX — Sfondo nero visibile nelle transizioni tra pannelli
   Il wrapper #fb-slider aveva background: var(--fb-dark) →
   #120e0b visibile nelle transizioni. Sostituito con crema.
   La box-shadow dei pannelli ammorbidita in tono bruno.
   ═══════════════════════════════════════════════════════════ */
#fb-slider {
    background: var(--fb-cream-100, #faf6ef);
}

@media (min-width: 1025px) {
    .fb-panel {
        box-shadow: 0 -30px 60px -10px rgba(31, 26, 23, 0.28);
    }

    .fb-panel:first-child {
        box-shadow: none;
    }
}


/* ═══════════════════════════════════════════════════════════
   SLIDER v2 — Transizione dissolve morbida
   La classe .fb-transition-v2 viene aggiunta via JS quando
   FB_TRANSITION_V2 = true. Per tornare alla v1:
   impostare FB_TRANSITION_V2 = false in slider.js.
   ═══════════════════════════════════════════════════════════ */

/* Pannelli in entrata: opacity animata via JS (0.12→1).
   Transition rapida per seguire il valore JS senza lag. */
#fb-slider.fb-transition-v2 .fb-panel {
    transition: opacity 0.06s linear;
}


/* ═══════════════════════════════════════════════════════════
   DOTS NAV — Visibilità su qualsiasi sfondo
   Override sulle regole di slider.css per garantire leggibilità
   su sfondi chiari, scuri e immagini.
   ═══════════════════════════════════════════════════════════ */

/* Sfondo scuro / immagine: dot bianco con doppio contorno */
.fb-slide-nav__dot {
    border: 2px solid rgba(255, 255, 255, 0.70);
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 1.5px rgba(0, 0, 0, 0.30),
        0 2px 8px rgba(0, 0, 0, 0.25);
    transition: all 0.30s cubic-bezier(.25, .46, .45, .94);
    position: relative;
}

.fb-slide-nav__dot:hover {
    border-color: var(--fb-gold, #c8962a);
    transform: scale(1.30);
    box-shadow:
        0 0 0 1.5px rgba(0, 0, 0, 0.30),
        0 2px 10px rgba(200, 150, 42, 0.35);
}

.fb-slide-nav__dot.is-active {
    background: var(--fb-gold, #c8962a);
    border-color: var(--fb-gold, #c8962a);
    transform: scale(1.18);
    box-shadow:
        0 0 0 2px rgba(0, 0, 0, 0.25),
        0 0 10px rgba(200, 150, 42, 0.50);
}

/* Sfondo chiaro (light / cream): dot scuro con contorno chiaro */
.fb-slide-nav--dark .fb-slide-nav__dot {
    border: 2px solid rgba(31, 26, 23, 0.55);
    background: rgba(31, 26, 23, 0.06);
    box-shadow:
        0 0 0 1.5px rgba(255, 255, 255, 0.55),
        0 2px 8px rgba(31, 26, 23, 0.15);
}

.fb-slide-nav--dark .fb-slide-nav__dot:hover {
    border-color: var(--fb-gold, #c8962a);
    box-shadow:
        0 0 0 1.5px rgba(255, 255, 255, 0.55),
        0 2px 10px rgba(200, 150, 42, 0.35);
}

.fb-slide-nav--dark .fb-slide-nav__dot.is-active {
    background: var(--fb-gold, #c8962a);
    border-color: var(--fb-gold, #c8962a);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.45),
        0 0 10px rgba(200, 150, 42, 0.50);
}


/* ═══════════════════════════════════════════════════════════
   DOTS NAV — Tooltip
   Contenuto da data-tooltip settato via JS.
   Posizionato a sinistra del dot, appare con slide-in.
   ═══════════════════════════════════════════════════════════ */

.fb-slide-nav__dot::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: var(--fb-gold, #c8962a);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #1f1a17;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
    padding: 5px 11px;
    border-radius: 7px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.20s ease, transform 0.20s ease;
    box-shadow: 0 2px 12px rgba(200, 150, 42, 0.35);
}

.fb-slide-nav__dot::after {
    content: '';
    position: absolute;
    right: calc(100% + 6px);
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--fb-gold, #c8962a);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.20s ease;
}

.fb-slide-nav__dot:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.fb-slide-nav__dot:hover::after {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════
   SLIDER v3 — Iris / Portal transition (RAF time-based)
   Gestito completamente via JS playV3Transition().
   CSS: solo overlay caldo radiale + GPU will-change.
   ═══════════════════════════════════════════════════════ */

/* Overlay ambrato radiale sul pannello uscente */
#fb-slider.fb-transition-v3 .fb-panel::after {
    background: radial-gradient(ellipse at 50% 44%,
            rgba(130, 65, 8, 0.50) 0%,
            rgba(6, 2, 0, 0.97) 100%);
}

/* GPU hint per clip-path e transform animati via RAF */
#fb-slider.fb-transition-v3 .fb-panel {
    will-change: transform, clip-path;
}


/* ════════════════════════════════════════════════════════
   CENTERED LOGO NAVBAR — Desktop ≥ 992 px
   Logo centered, menu items split left / right
   ════════════════════════════════════════════════════════ */
@media (min-width: 992px) {

    /* ── Header non-sticky più alto per il logo grande ── */
    #sp-header:not(.sticky) {
        height: 140px !important;
    }

    /* .transparent-wrapper è il GENITORE di #sp-header: usa :has() */
    .transparent-wrapper:has(#sp-header:not(.sticky)) {
        height: 140px !important;
    }

    /* Le voci di menu matchano l'altezza header */
    #sp-header:not(.sticky) .sp-megamenu-wrapper>.sp-megamenu-parent>li>a {
        height: 140px !important;
        line-height: 140px !important;
    }

    /* Language (flag): centrato con transform - sicuro, i suoi dropdown sono position:absolute */
    #sp-header:not(.sticky) #sp-user2 {
        top: 50% !important;
        transform: translateY(-50%);
        height: auto;
    }

    /* Login: NON usa transform perche il flex-modal e' position:fixed —
       un transform sul parent crea un nuovo containing block e rompe il modal.
       Usa top:0 + bottom:0 per occupare tutta l'altezza e align-items:center
       (gia' impostato nella regola base) per centrare verticalmente il contenuto. */
    #sp-header:not(.sticky) #sp-position1 {
        top: 0 !important;
        bottom: 0;
        height: auto;
        transform: none;
    }

    /* positioning context for absolute children */
    #sp-header .container>.row {
        position: relative;
        display: flex;
        align-items: center;
    }

    /* ── Logo: out of flow, pinned to horizontal center ── */
    #sp-header #sp-logo {
        position: absolute;
        left: 50%;
        top: 0;
        height: 100%;
        transform: translateX(-50%);
        width: clamp(260px, 20vw, 320px) !important;
        flex: none !important;
        max-width: none !important;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* override template.css higher-specificity rule that keeps .sp-column position:absolute */
    #sp-header .container>.row #sp-logo .sp-column {
        position: relative !important;
        width: 100% !important;
        top: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #sp-header #sp-logo a.logo {
        padding: 0 !important;
        margin: 0 !important;
        justify-content: center;
        height: 100% !important;
        line-height: normal !important;
    }

    /* Non-sticky: logo grande */
    #sp-header:not(.sticky) #sp-logo .sp-default-logo {
        width: 100% !important;
        height: auto !important;
        max-height: 145px !important;
        max-width: none !important;
        margin-top: 25px !important;
        /* sposta logo giù per bilanciare l'altezza header */
    }



    /* Sticky: logo più compatto ma respirato */
    #sp-header.sticky #sp-logo .sp-default-logo {
        width: 100% !important;
        height: auto !important;
        max-height: 85px !important;
        max-width: none !important;
    }

    /* ── Menu: full-row width so its center == row center ── */
    #sp-header #sp-menu {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    #sp-header #sp-menu>.sp-column {
        float: none !important;
    }

    #sp-header #sp-menu .sp-column .sp-megamenu-parent {
        float: none !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: flex-start !important;
    }

    #sp-header #sp-menu .sp-column .sp-megamenu-parent>li {
        float: none !important;
        white-space: nowrap;
    }

    #sp-header #sp-menu .sp-column .sp-megamenu-parent>li>a {
        white-space: nowrap;
        padding: 0 10px;
    }

    /* padding-right per non andare sotto language/login (position:absolute) */
    #sp-header .sp-megamenu-wrapper {
        padding: 0 150px 0 0;
    }

    /* ── Language & Login: pinned top-right, ben distanziati ── */
    /* Login (~80px wide) a right:10px → occupa fino a 90px da destra  */
    /* Language flag  a right:100px → right edge a 100px → nessun overlap */
    #sp-header #sp-user2 {
        position: absolute;
        right: 100px;
        top: 0;
        width: auto !important;
        flex: none !important;
        max-width: none !important;
        z-index: 11;
        display: flex;
        align-items: center;
        height: 100%;
    }

    #sp-header #sp-position1 {
        position: absolute;
        right: 10px;
        top: 0;
        width: auto !important;
        flex: none !important;
        max-width: none !important;
        z-index: 11;
        display: flex !important;
        /* override Bootstrap d-lg-block !important */
        align-items: center;
        height: 100%;
    }

    /* ── Hide empty <li> placeholders ── */
    #sp-header .sp-megamenu-parent>li.sp-menu-item:empty {
        display: none !important;
    }

    /* ── Split con gap FISSO attorno al logo ── */
    /* sinistra=150px, destra=110px: Media Gallery leggermente più vicina centro */
    #sp-header .sp-megamenu-parent>li:nth-child(4) {
        margin-right: 150px;
    }

    #sp-header .sp-megamenu-parent>li:nth-child(5) {
        margin-left: 150px;
    }

    /* ── Sticky: dimensioni ridotte ── */
    #sp-header.sticky #sp-logo {
        width: clamp(150px, 12vw, 200px) !important;
    }

    #sp-header.sticky .sp-megamenu-wrapper {
        padding: 0 130px 0 0;
    }

    #sp-header.sticky #sp-user2 {
        right: 88px;
    }

    #sp-header.sticky #sp-position1 {
        right: 8px;
    }

    /* gap logo sticky ridotto proporzionalmente */
    #sp-header.sticky .sp-megamenu-parent>li:nth-child(4) {
        margin-right: 115px;
    }

    #sp-header.sticky .sp-megamenu-parent>li:nth-child(5) {
        margin-left: 145px;
    }

}

/* =======================================================================
   NAVBAR CENTRATA - narrow desktop (992px-1199px) override
   Riduce gap, logo e altezza per evitare sovrapposizioni
   ======================================================================= */
@media (min-width: 992px) and (max-width: 1199px) {

    /* Header non-sticky piu basso */
    #sp-header:not(.sticky) {
        height: 110px !important;
    }

    .transparent-wrapper:has(#sp-header:not(.sticky)) {
        height: 110px !important;
    }

    #sp-header:not(.sticky) .sp-megamenu-wrapper>.sp-megamenu-parent>li>a {
        height: 110px !important;
        line-height: 110px !important;
    }

    /* Logo leggermente piu piccolo */
    #sp-header #sp-logo {
        width: clamp(180px, 16vw, 220px) !important;
    }

    #sp-header:not(.sticky) #sp-logo .sp-default-logo {
        max-height: 95px !important;
    }

    /* Right padding ridotto (spazio per flag/login piu stretto) */
    #sp-header .sp-megamenu-wrapper {
        padding: 0 110px 0 0;
    }

    /* Flag e login piu vicini al bordo */
    #sp-header #sp-user2 {
        right: 70px;
    }

    #sp-header #sp-position1 {
        right: 5px;
    }

    /* Gap attorno al logo ridotto */
    #sp-header .sp-megamenu-parent>li:nth-child(4) {
        margin-right: 90px;
    }

    #sp-header .sp-megamenu-parent>li:nth-child(5) {
        margin-left: 70px;
    }

    /* Sticky overrides per narrow desktop */
    #sp-header.sticky #sp-logo {
        width: clamp(130px, 11vw, 165px) !important;
    }

    #sp-header.sticky .sp-megamenu-wrapper {
        padding: 0 100px 0 0;
    }

    #sp-header.sticky #sp-user2 {
        right: 65px;
    }

    #sp-header.sticky #sp-position1 {
        right: 5px;
    }

    #sp-header.sticky .sp-megamenu-parent>li:nth-child(4) {
        margin-right: 75px;
    }

    #sp-header.sticky .sp-megamenu-parent>li:nth-child(5) {
        margin-left: 60px;
    }
}


/* =======================================================================
   NAVBAR CENTRATA - very narrow desktop (992px-1099px) fine-tune
   Riduce padding voci e gap per evitare overlap con logo
   ======================================================================= */
@media (min-width: 992px) and (max-width: 1099px) {

    /* Padding voci menu piu stretto */
    #sp-header #sp-menu .sp-column .sp-megamenu-parent>li>a {
        padding: 0 8px;
    }

    /* Gap ulteriormente ridotto */
    #sp-header .sp-megamenu-parent>li:nth-child(4) {
        margin-right: 70px;
    }

    #sp-header .sp-megamenu-parent>li:nth-child(5) {
        margin-left: 55px;
    }

    /* Sticky */
    #sp-header.sticky .sp-megamenu-parent>li:nth-child(4) {
        margin-right: 60px;
    }

    #sp-header.sticky .sp-megamenu-parent>li:nth-child(5) {
        margin-left: 45px;
    }
}

/* =======================================================================
   ADMIN CALENDARIO — fix .acc-cal-col altezza su mobile
   La regola base imposta flex:1 1 0 (flex-basis:0); il media query
   mobile cambia solo flex-shrink/flex-grow ma non flex-basis, quindi
   height:370px viene ignorato e il calendario rimane a 0px (solo padding=20px).
   Fix: sovrascrivere flex-basis con il valore di altezza corretto.
   ======================================================================= */
@media (max-width: 900px) {
    .acc-cal-col {
        flex: 0 0 440px !important;
    }
}

@media (max-width: 600px) {
    .acc-cal-col {
        flex: 0 0 370px !important;
    }
}

/* =======================================================================
   NAV USER ICON — fix pe-7s-user vertical alignment when logged in
   Template.css sets .signin-img-wrap { float:left; height:20px } which
   stacks with .info-wrap making the container 115px; the header flex then
   centres 115px at y=16 instead of y=25 where the flag/other items land.
   Fix: force the whole ul→li→button→ap-signin chain to 90px flex, and
   release .signin-img-wrap from float so it doesn't stack with info-wrap.
   ======================================================================= */
#sp-header .ap-my-account-menu ul.ap-my-account,
#sp-header .ap-my-account-menu ul.ap-my-account>li,
#sp-header .ap-my-account-menu .dropdown-button,
#sp-header .ap-my-account-menu .ap-signin.logged-in {
    height: 90px !important;
    display: flex !important;
    align-items: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#sp-header .ap-my-account-menu .signin-img-wrap {
    float: none !important;
    height: auto !important;
    line-height: normal !important;
    display: flex !important;
    align-items: center !important;
}

/* Sticky header variant (75px) */
#sp-header.sticky .ap-my-account-menu ul.ap-my-account,
#sp-header.sticky .ap-my-account-menu ul.ap-my-account>li,
#sp-header.sticky .ap-my-account-menu .dropdown-button,
#sp-header.sticky .ap-my-account-menu .ap-signin.logged-in {
    height: 75px !important;
}

/* dropdown menu  */
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item.current-item>a,
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item a:hover {
    background-color: #1e1607e4 !important;
    border-radius: 22px !important;
}

#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
    background: rgba(196, 165, 102, 0.85);
    border-radius: 20px !important;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a {
    display: block;
    padding: 5px 10px;
    margin-bottom: 2px;
    color: #333;
    cursor: pointer;
    font-size: 90%;
    border-radius: 22px !important;
}

#sp-header #sp-menu .sp-megamenu-parent>li.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent>li.sp-has-child.active>a {
    color: #c4a566;
}

/* =====================================
   PHONE NUMBER FIELD  (fb-phone-wrap)
   ===================================== */

.fb-phone-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    background: var(--fb-cream-100);
    border: 1.5px solid var(--fb-cream-border);
    border-radius: 18px;
    box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s;
    overflow: visible;
}

.fb-phone-wrap:focus-within {
    border-color: var(--fb-gold-cta);
    box-shadow: 0 0 0 3px rgba(212, 166, 42, 0.15);
}

.fb-phone-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 8px 0 14px;
    background: transparent;
    border: none;
    border-right: 1.5px solid var(--fb-cream-border);
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 17px 0 0 17px;
    transition: background .15s;
    outline: none;
    height: 100%;
    box-sizing: border-box;
    white-space: nowrap;
}

.fb-phone-btn:hover {
    background: rgba(0, 0, 0, 0.04);
}

.fb-phone-flag {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.fb-phone-pfx {
    font-size: 13px;
    color: var(--fb-brown-700, #5a4e44);
    min-width: 28px;
    font-family: inherit;
}

.fb-phone-caret {
    display: block;
    flex-shrink: 0;
    transition: transform .15s ease-out;
}

.fb-phone-wrap.pn-select--open .fb-phone-caret {
    transform: rotate(180deg);
}

.fb-phone-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    color: var(--fb-brown-800);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    padding: 0 14px;
}

.fb-phone-input::placeholder {
    color: var(--fb-brown-400, #9b8e85);
    font-weight: 300;
}

.pn-dropdown {
    background: #fff;
    border: 1.5px solid var(--fb-cream-border);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    transition: opacity .15s ease-out, top .15s ease-out, visibility .15s;
    z-index: 9999;
    padding: 0 0 6px;
}

.pn-select--open .pn-dropdown {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.pn-search {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--fb-cream-border);
    margin-bottom: 4px;
}

.pn-search svg {
    position: absolute;
    left: 10px;
    width: 15px;
    height: 15px;
    pointer-events: none;
    stroke: var(--fb-brown-500);
}

.pn-search input[type=search] {
    padding: 10px 12px 10px 34px;
    height: 40px;
    width: 100%;
    border: 0;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    background: transparent;
    color: var(--fb-brown-800);
    -webkit-appearance: none;
    appearance: none;
}

.pn-search input[type=search]::-webkit-search-decoration,
.pn-search input[type=search]::-webkit-search-cancel-button {
    display: none;
}

.pn-list {
    list-style: none;
    margin: 0;
    max-height: 168px;
    overflow-y: auto;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: #c0c4ca #fff;
}

.pn-list::-webkit-scrollbar {
    width: 6px;
}

.pn-list::-webkit-scrollbar-track {
    background: #fff;
}

.pn-list::-webkit-scrollbar-thumb {
    background: #c0c4ca;
    border-radius: 4px;
}

.pn-list-item {
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    padding: 6px 10px;
    transition: background-color .1s;
    outline: none;
    list-style: none;
    margin: 0 4px;
}

.pn-list-item:hover,
.pn-list-item:focus {
    background: var(--fb-cream-100, #f7f3ee);
}

.pn-list-item--selected {
    font-weight: 600;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23c4a566' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px;
}

.pn-list-item--no-results {
    pointer-events: none;
    color: var(--fb-brown-400, #85898f);
    font-size: 13px;
    padding: 8px 10px;
}

.pn-list-item__flag {
    width: 22px;
    height: auto;
    margin-right: 10px;
    border-radius: 2px;
    display: block;
    flex-shrink: 0;
}

.pn-list-item__country {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pn-list-item__prefix {
    color: var(--fb-brown-500, #85898f);
    font-size: 13px;
    flex-shrink: 0;
    margin-left: 4px;
}

.ap-my-account-menu .signin-img-wrap i.pe {
    color: #c4a566;
    margin: 0 39px 0 0;
}

/* =============================================
   OFFCANVAS DARK THEME
   ============================================= */

/* Logo */
.offcanvas-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 20px 10px;
    margin-bottom: 0;
}

.offcanvas-logo img {
    max-width: 165px;
    max-height: 108px;
    width: auto;
    height: auto;
}

/* Close button */
.close-offcanvas {
    color: #c3a566 !important;
    opacity: 0.85;
    transition: opacity .2s;
}

.close-offcanvas:hover {
    opacity: 1;
}

.close-offcanvas i {
    color: #c3a566 !important;
}

/* Module title (h3) — forza gold con !important */
.offcanvas-menu .sp-module-title,
.offcanvas-menu .sp-module>h3,
.offcanvas-inner .sp-module-title,
.offcanvas-inner h3.sp-module-title {
    color: rgba(195, 165, 102, 0.55) !important;
    font-size: 11px !important;
    letter-spacing: 0.22em !important;
    border: none !important;
    text-transform: uppercase !important;
    padding: 14px 20px 4px !important;
    margin: 0 !important;
    font-weight: 500 !important;
    background: none !important;
}

.offcanvas-menu .sp-module-title::after,
.offcanvas-inner h3.sp-module-title::after {
    display: none !important;
}

/* Riduci gap logo→menu e tra moduli */
.offcanvas-inner {
    padding-top: 0 !important;
}

.offcanvas-inner .sp-module {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Struttura accordion: link + toggler — toggler in posizione assoluta */
.offcanvas-menu .accordion-menu>li {
    display: block !important;
    position: relative;
}

/* Link principale: padding-right lascia spazio al toggler */
.offcanvas-menu .accordion-menu>li>a {
    display: block !important;
    text-align: left !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 17px;
    letter-spacing: 0.04em;
    padding: 12px 60px 12px 20px !important;
    border-bottom: none !important;
    transition: color .2s, background .2s !important;
    line-height: 1.3;
}

.offcanvas-menu .accordion-menu>li>a:hover {
    color: #c3a566 !important;
    background: rgba(195, 165, 102, 0.06) !important;
}

/* Toggler (chevron) — assoluto in top-right, height segue la riga del testo */
.offcanvas-menu .offcanvas-inner .sp-module ul.accordion-menu>li .accordion-menu-toggler,
.offcanvas-menu .accordion-menu>li>.accordion-menu-toggler {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 100% !important;
    min-height: 44px !important;
    padding: 0 !important;
    cursor: pointer !important;
    color: rgba(195, 165, 102, 0.65) !important;
    border: none !important;
    transition: color .2s !important;
    box-sizing: border-box !important;
}

.offcanvas-menu .accordion-menu>li>.accordion-menu-toggler:hover {
    color: #c3a566 !important;
}

.offcanvas-menu .accordion-menu>li>.accordion-menu-toggler i {
    font-size: 11px;
    color: inherit !important;
}

/* Submenu collasso */
.offcanvas-menu .accordion-menu>li>ul.collapse,
.offcanvas-menu .accordion-menu>li>ul.collapsing {
    width: 100%;
}

/* Sottolivello menu */
.offcanvas-menu .accordion-menu ul li a {
    display: block !important;
    text-align: left !important;
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 14px;
    padding: 9px 20px 9px 32px !important;
    border: none !important;
    transition: color .2s !important;
}

.offcanvas-menu .accordion-menu ul li a:hover {
    color: #c3a566 !important;
}

/* Active / current — voce attiva evidenziata */
.offcanvas-menu .accordion-menu li.active>a,
.offcanvas-menu .accordion-menu li.current>a {
    color: #c3a566 !important;
    font-weight: 600;
    background: rgba(195, 165, 102, 0.09) !important;
    border-left: 3px solid #c3a566 !important;
    padding-left: 17px !important;
}

.offcanvas-menu .accordion-menu li.active>a:hover,
.offcanvas-menu .accordion-menu li.current>a:hover {
    color: #c3a566 !important;
}

/* Custom language switcher */
.offcanvas-lang-switcher {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px 14px;
}

.offcanvas-lang-switcher .lang-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid rgba(195, 165, 102, 0.25);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}

.offcanvas-lang-switcher .lang-btn:hover {
    background: rgba(195, 165, 102, 0.12);
    border-color: rgba(195, 165, 102, 0.55);
    color: #c3a566;
}

.offcanvas-lang-switcher .lang-btn.lang-active {
    border-color: #c3a566;
    background: rgba(195, 165, 102, 0.12);
    color: #c3a566;
    font-weight: 600;
    cursor: default;
}

.offcanvas-lang-switcher .lang-btn img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

/* Nascondi modulo lingua Joomla (offcanvas.card) — rimpiazzato dal switcher custom */
.offcanvas-menu .offcanvas.card,
.offcanvas-inner .offcanvas.card {
    display: none !important;
}

/* Admin/login modules */
.offcanvas-menu .sp-module+.sp-module {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 8px;
    padding-top: 4px;
}

/* Scrollbar */
.offcanvas-menu {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(195, 165, 102, 0.25) transparent;
}