/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Child theme for Hello Elementor.
Author: Claudio
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/*
 * Inserisci qui eventuale CSS personalizzato.
 */
/* =========================================================
   FALCO GOLD - HOME PAGE
   Restyling premium gold / neutral
   ========================================================= */


/* ---------------------------------------------------------
   VARIABLES
   --------------------------------------------------------- */

:root {
    --fg-gold-dark: #7b6228;
    --fg-gold: #ae8735;
    --fg-gold-medium: #c6a253;
    --fg-gold-light: #ddc98f;
    --fg-gold-soft: #eee3c5;

    --fg-ivory: #faf8f2;
    --fg-cream: #f4f0e6;
    --fg-white: #ffffff;

    --fg-dark: #1c1c1a;
    --fg-dark-soft: #292824;
    --fg-text: #44423d;
    --fg-muted: #777268;

    --fg-border: rgba(151, 116, 43, 0.18);

    --fg-shadow:
        0 20px 60px rgba(41, 32, 15, 0.08);

    --fg-radius: 22px;
}


/* ---------------------------------------------------------
   BASE
   --------------------------------------------------------- */

.fg-home-intro,
.fg-services {
    position: relative;
    font-family: inherit;
    color: var(--fg-text);
}

.fg-home-intro *,
.fg-services * {
    box-sizing: border-box;
}

.fg-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.fg-home-intro {
    overflow: hidden;
    padding: 105px 0 75px;

    background:
        radial-gradient(
            circle at 85% 0%,
            rgba(215, 191, 128, 0.16),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fbfaf6 48%,
            #f5f0e4 100%
        );
}

.fg-home-intro::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -330px;
    left: -180px;
    border: 1px solid rgba(174, 135, 53, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.fg-hero {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}

.fg-eyebrow,
.fg-section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 20px;

    color: var(--fg-gold-dark);

    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.fg-eyebrow::before,
.fg-section-label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--fg-gold-medium);
}

.fg-hero-title {
    max-width: 900px;
    margin: 0 auto;

    color: var(--fg-dark);

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.fg-hero-title span {
    display: block;

    background: linear-gradient(
        100deg,
        #725a25,
        #b59042 48%,
        #836827
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fg-hero-text {
    max-width: 720px;
    margin: 26px auto 0;

    color: var(--fg-muted);

    font-size: 18px;
    line-height: 1.75;
}

.fg-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 36px;
}


/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */

.fg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 27px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.fg-btn:hover {
    transform: translateY(-2px);
}

.fg-btn-primary {
    color: #ffffff !important;

    background: linear-gradient(
        110deg,
        #846721,
        #b58a32 48%,
        #96752b
    );

    box-shadow:
        0 12px 30px rgba(135, 101, 30, 0.22);
}

.fg-btn-primary:hover {
    box-shadow:
        0 15px 36px rgba(135, 101, 30, 0.3);
}

.fg-btn-secondary {
    color: var(--fg-dark) !important;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--fg-border);
}


/* ---------------------------------------------------------
   BENEFITS
   --------------------------------------------------------- */

.fg-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 90px;

    background: rgba(255, 255, 255, 0.7);

    border: 1px solid var(--fg-border);
    border-radius: var(--fg-radius);

    box-shadow: var(--fg-shadow);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    overflow: hidden;
}

.fg-benefit {
    position: relative;

    display: flex;
    gap: 18px;

    padding: 35px 32px;
}

.fg-benefit:not(:last-child) {
    border-right: 1px solid var(--fg-border);
}

.fg-benefit-number {
    flex: 0 0 auto;

    color: var(--fg-gold-medium);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.fg-benefit h2 {
    margin: 0 0 9px;

    color: var(--fg-dark);

    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
}

.fg-benefit p {
    margin: 0;

    color: var(--fg-muted);

    font-size: 14px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   CALCULATOR INTRO
   --------------------------------------------------------- */

.fg-calculator-heading {
    max-width: 750px;
    margin: 105px auto 0;

    text-align: center;

    scroll-margin-top: 130px;
}

.fg-calculator-heading h2 {
    margin: 0;

    color: var(--fg-dark);

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.fg-calculator-heading p {
    max-width: 650px;
    margin: 20px auto 0;

    color: var(--fg-muted);

    font-size: 16px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   SERVICES
   --------------------------------------------------------- */

.fg-services {
    padding: 115px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #faf8f2 55%,
            #ffffff 100%
        );
}

.fg-section-header {
    max-width: 800px;
    margin-bottom: 55px;
}

.fg-section-header h2,
.fg-process-content h2 {
    margin: 0;

    color: var(--fg-dark);

    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 600;
}

.fg-section-header h2 span,
.fg-process-content h2 span {
    color: var(--fg-gold);
}

.fg-section-header p {
    max-width: 680px;
    margin: 22px 0 0;

    color: var(--fg-muted);

    font-size: 17px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   SERVICE CARDS
   --------------------------------------------------------- */

.fg-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.fg-service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 330px;
    padding: 38px;

    background: #ffffff;

    border: 1px solid var(--fg-border);
    border-radius: var(--fg-radius);

    box-shadow:
        0 10px 40px rgba(35, 29, 16, 0.035);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.fg-service-card::after {
    content: "";

    position: absolute;
    width: 190px;
    height: 190px;
    right: -95px;
    top: -100px;

    border: 1px solid rgba(176, 142, 68, 0.13);
    border-radius: 50%;
}

.fg-service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(151, 116, 43, 0.32);

    box-shadow:
        0 22px 55px rgba(35, 29, 16, 0.08);
}

.fg-service-card-featured {
    background:
        linear-gradient(
            135deg,
            #292720,
            #1d1c19
        );

    border-color: transparent;
}

.fg-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    margin-bottom: 48px;
}

.fg-card-number {
    color: var(--fg-gold-medium);

    font-size: 12px;
    font-weight: 700;
}

.fg-card-tag {
    padding: 8px 13px;

    color: var(--fg-gold-dark);

    background: var(--fg-cream);

    border: 1px solid var(--fg-border);
    border-radius: 999px;

    font-size: 11px;
    line-height: 1;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fg-service-card h3 {
    max-width: 440px;

    margin: 0 0 16px;

    color: var(--fg-dark);

    font-size: 27px;
    line-height: 1.15;
    letter-spacing: -0.025em;

    font-weight: 600;
}

.fg-service-card p {
    max-width: 520px;

    margin: 0 0 30px;

    color: var(--fg-muted);

    font-size: 15px;
    line-height: 1.75;
}

.fg-service-card-featured h3 {
    color: #ffffff;
}

.fg-service-card-featured p {
    color: rgba(255, 255, 255, 0.68);
}

.fg-service-card-featured .fg-card-tag {
    color: #e9d7a3;

    background: rgba(255, 255, 255, 0.07);

    border-color: rgba(224, 198, 129, 0.2);
}

.fg-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    margin-top: auto;

    color: var(--fg-gold-dark) !important;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none !important;
}

.fg-card-link span {
    transition: transform 0.25s ease;
}

.fg-card-link:hover span {
    transform: translateX(5px);
}

.fg-service-card-featured .fg-card-link {
    color: #e4c878 !important;
}


/* ---------------------------------------------------------
   PROCESS
   --------------------------------------------------------- */

.fg-process {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;

    margin-top: 120px;
    padding: 65px 0;

    border-top: 1px solid var(--fg-border);
    border-bottom: 1px solid var(--fg-border);
}

.fg-process-steps {
    display: flex;
    flex-direction: column;
}

.fg-process-step {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 20px;

    padding: 25px 0;
}

.fg-process-step:not(:last-child) {
    border-bottom: 1px solid var(--fg-border);
}

.fg-process-step > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: var(--fg-gold-dark);

    background: var(--fg-cream);

    border: 1px solid var(--fg-border);
    border-radius: 50%;

    font-size: 13px;
    font-weight: 700;
}

.fg-process-step h3 {
    margin: 2px 0 8px;

    color: var(--fg-dark);

    font-size: 18px;
    font-weight: 600;
}

.fg-process-step p {
    margin: 0;

    color: var(--fg-muted);

    font-size: 14px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   CONTACT CTA
   --------------------------------------------------------- */

.fg-contact-box {
    position: relative;

    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    align-items: center;
    gap: 60px;

    margin-top: 100px;
    padding: 60px;

    color: white;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(203, 165, 79, 0.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #2c2a24,
            #191917
        );

    border: 1px solid rgba(211, 183, 112, 0.16);
    border-radius: 26px;

    overflow: hidden;
}

.fg-contact-label {
    display: block;

    margin-bottom: 14px;

    color: #d7ba70;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.fg-contact-copy h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(30px, 3.5vw, 45px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.fg-contact-copy p {
    max-width: 660px;

    margin: 18px 0 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 15px;
    line-height: 1.75;
}

.fg-contact-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.fg-btn-light {
    color: #28251e !important;

    background:
        linear-gradient(
            110deg,
            #f1e2b4,
            #d6b96e
        );
}

.fg-contact-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, 0.72) !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;
}


/* ---------------------------------------------------------
   RESPONSIVE TABLET
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .fg-container {
        width: min(100% - 36px, 1180px);
    }

    .fg-home-intro {
        padding-top: 80px;
    }

    .fg-benefits {
        grid-template-columns: 1fr;
    }

    .fg-benefit:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid var(--fg-border);
    }

    .fg-services-grid {
        grid-template-columns: 1fr;
    }

    .fg-process {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .fg-contact-box {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}


/* ---------------------------------------------------------
   RESPONSIVE MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

    .fg-container {
        width: calc(100% - 28px);
    }

    .fg-home-intro {
        padding: 65px 0 55px;
    }

    .fg-hero-title {
        font-size: 40px;
    }

    .fg-hero-text {
        font-size: 16px;
    }

    .fg-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .fg-btn {
        width: 100%;
    }

    .fg-benefits {
        margin-top: 60px;
    }

    .fg-benefit {
        padding: 28px 24px;
    }

    .fg-calculator-heading {
        margin-top: 75px;
    }

    .fg-services {
        padding: 80px 0;
    }

    .fg-section-header {
        margin-bottom: 35px;
    }

    .fg-service-card {
        min-height: 0;
        padding: 28px 24px;
    }

    .fg-card-top {
        margin-bottom: 35px;
    }

    .fg-service-card h3 {
        font-size: 24px;
    }

    .fg-process {
        margin-top: 80px;
        padding: 50px 0;
    }

    .fg-contact-box {
        margin-top: 70px;
        padding: 38px 26px;
        border-radius: 20px;
    }

}
/* =========================================================
   FALCO GOLD - FOOTER
   ========================================================= */

.fg-footer {
    --fg-footer-gold: #c5a458;
    --fg-footer-gold-light: #dec98e;
    --fg-footer-gold-dark: #92722e;
    --fg-footer-dark: #181816;
    --fg-footer-dark-soft: #22211d;
    --fg-footer-text: rgba(255, 255, 255, 0.68);
    --fg-footer-border: rgba(216, 190, 121, 0.16);

    position: relative;
    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(197, 164, 88, 0.12),
            transparent 26%
        ),
        radial-gradient(
            circle at 90% 100%,
            rgba(197, 164, 88, 0.08),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #22211d 0%,
            #181816 55%,
            #111110 100%
        );
}


/* CONTAINER */

.fg-footer-container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;

    padding: 85px 0 26px;
}


/* DECORAZIONE */

.fg-footer-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    top: -310px;
    right: 6%;

    border: 1px solid rgba(211, 181, 107, 0.12);
    border-radius: 50%;

    pointer-events: none;
}

.fg-footer-glow::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    top: 59px;
    left: 59px;

    border: 1px solid rgba(211, 181, 107, 0.08);
    border-radius: inherit;
}


/* MAIN GRID */

.fg-footer-main {
    display: grid;
    grid-template-columns: 1.5fr 0.75fr 1fr;

    gap: 75px;
}


/* BRAND */

.fg-footer-brand {
    max-width: 390px;
}

.fg-footer-logo {
    display: inline-block;
}

.fg-footer-logo img {
    display: block;

    width: 145px;
    height: auto;

    margin-bottom: 25px;
}

.fg-footer-description {
    max-width: 360px;

    margin: 0;

    color: var(--fg-footer-text);

    font-size: 14px;
    line-height: 1.8;
}


/* LABEL */

.fg-footer-label {
    display: block;

    margin-bottom: 24px;

    color: var(--fg-footer-gold-light);

    font-size: 11px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}


/* LINKS */

.fg-footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 13px;
}

.fg-footer-links a {
    position: relative;

    color: rgba(255, 255, 255, 0.73) !important;

    font-size: 14px;
    font-weight: 400;

    text-decoration: none !important;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.fg-footer-links a:hover {
    color: var(--fg-footer-gold-light) !important;
    transform: translateX(4px);
}


/* SOCIAL */

.fg-footer-socials {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-top: 28px;
}

.fg-footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: var(--fg-footer-gold-light) !important;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid var(--fg-footer-border);
    border-radius: 50%;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.fg-footer-social svg {
    width: 18px;
    height: 18px;

    fill: currentColor;
}

.fg-footer-social:hover {
    transform: translateY(-3px);

    color: #211e16 !important;

    background:
        linear-gradient(
            135deg,
            #e1ce99,
            #b9923e
        );

    border-color: transparent;
}


/* CONTACT LIST */

.fg-footer-contact-list {
    display: flex;
    flex-direction: column;

    gap: 19px;
}

.fg-footer-contact-list > a,
.fg-footer-contact-list > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;

    color: rgba(255, 255, 255, 0.8) !important;

    font-size: 14px;
    line-height: 1.55;

    text-decoration: none !important;
}

.fg-footer-contact-list small {
    display: block;

    margin-bottom: 3px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 10px;
    line-height: 1.3;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fg-footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    color: var(--fg-footer-gold);

    border: 1px solid var(--fg-footer-border);
    border-radius: 50%;

    font-size: 9px;
    font-weight: 700;
}


/* CTA */

.fg-footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 40px;

    margin-top: 75px;
    padding: 36px 40px;

    background:
        linear-gradient(
            100deg,
            rgba(255, 255, 255, 0.045),
            rgba(197, 164, 88, 0.07)
        );

    border: 1px solid var(--fg-footer-border);
    border-radius: 20px;
}

.fg-footer-cta-label {
    display: block;

    margin-bottom: 7px;

    color: var(--fg-footer-gold-light);

    font-size: 10px;
    line-height: 1;

    font-weight: 700;
    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.fg-footer-cta h2 {
    margin: 0;

    color: #ffffff;

    font-size: 27px;
    line-height: 1.2;
    font-weight: 500;

    letter-spacing: -0.02em;
}


/* CTA BUTTON */

.fg-footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    min-height: 50px;
    padding: 0 24px;

    color: #272319 !important;

    background:
        linear-gradient(
            110deg,
            #ead9a5,
            #c5a458 55%,
            #af893b
        );

    border-radius: 999px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.fg-footer-button span {
    font-size: 18px;

    transition: transform 0.25s ease;
}

.fg-footer-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 13px 30px rgba(0, 0, 0, 0.25);
}

.fg-footer-button:hover span {
    transform: translateX(4px);
}


/* BOTTOM */

.fg-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    margin-top: 30px;
    padding-top: 24px;

    border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.fg-footer-legal,
.fg-footer-policy {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 11px;
}

.fg-footer-dot {
    width: 3px;
    height: 3px;

    background: var(--fg-footer-gold-dark);

    border-radius: 50%;
}

.fg-footer-policy a {
    color: rgba(255, 255, 255, 0.42) !important;

    font-size: 11px;

    text-decoration: none !important;

    transition: color 0.2s ease;
}

.fg-footer-policy a:hover {
    color: var(--fg-footer-gold-light) !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .fg-footer-container {
        width: min(100% - 36px, 1180px);

        padding-top: 65px;
    }

    .fg-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 55px 40px;
    }

    .fg-footer-brand {
        grid-column: 1 / -1;

        max-width: 600px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .fg-footer-container {
        width: calc(100% - 28px);

        padding-top: 55px;
    }

    .fg-footer-main {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .fg-footer-brand {
        grid-column: auto;
    }

    .fg-footer-logo img {
        width: 125px;
    }

    .fg-footer-cta {
        flex-direction: column;
        align-items: flex-start;

        margin-top: 55px;
        padding: 30px 25px;
    }

    .fg-footer-button {
        width: 100%;
    }

    .fg-footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 13px;
    }

    .fg-footer-legal {
        line-height: 1.7;
    }

}
/* ==========================================================
   FALCO GOLD — HEADER DEFINITIVO
   Hello Elementor + Elementor Theme Builder
   ========================================================== */


/* ----------------------------------------------------------
   RESET / PROTEZIONE DA ELEMENTOR
   ---------------------------------------------------------- */

.fghead,
.fghead *,
.fghead *::before,
.fghead *::after {
    box-sizing: border-box !important;
}

.fghead {
    --fghead-gold-1: #9f7519;
    --fghead-gold-2: #c79b30;
    --fghead-gold-3: #dfc27a;

    --fghead-black: #191815;
    --fghead-dark: #2c2a25;
    --fghead-text: #39362f;
    --fghead-muted: #777168;

    --fghead-white: #ffffff;
    --fghead-cream: #faf8f2;

    --fghead-border: rgba(157, 116, 24, 0.14);

    display: block !important;

    position: sticky;
    top: 0;
    z-index: 99999;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    font-family: inherit;

    background: #ffffff;
}

.fghead a {
    text-decoration: none !important;
}

.fghead img {
    border: 0 !important;
}

.fghead button,
.fghead summary {
    font-family: inherit;
}


/* Elementor HTML widget */

.elementor-widget-html .fghead {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

.elementor-widget-html .fghead p,
.elementor-widget-html .fghead h1,
.elementor-widget-html .fghead h2,
.elementor-widget-html .fghead h3 {
    margin: 0 !important;
}


/* Admin WordPress */

body.admin-bar .fghead {
    top: 32px;
}


/* ----------------------------------------------------------
   CONTAINER
   ---------------------------------------------------------- */

.fghead-container {
    width: min(1240px, calc(100% - 48px)) !important;
    max-width: 1240px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    padding: 0 !important;
}


/* ==========================================================
   TOP BAR ORO
   ========================================================== */

.fghead-top {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    background:
        linear-gradient(
            105deg,
            #a5760c 0%,
            #bf8f1e 38%,
            #d2aa4e 72%,
            #dfc27a 100%
        ) !important;

    border: 0 !important;
}

.fghead-top-inner {
    display: flex !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 30px;

    min-height: 40px;
}

.fghead-top-left,
.fghead-top-right {
    display: flex !important;

    align-items: center !important;

    gap: 22px;

    margin: 0 !important;
    padding: 0 !important;
}


/* LINK TOP */

.fghead-top-link {
    display: inline-flex !important;

    align-items: center !important;

    gap: 7px;

    margin: 0 !important;
    padding: 0 !important;

    color: #231d10 !important;

    font-size: 11px !important;
    line-height: 1 !important;

    font-weight: 600 !important;

    white-space: nowrap;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.fghead-top-link:hover {
    color: #231d10 !important;

    opacity: 0.68;

    transform: translateY(-1px);
}


/* icone carattere */

.fghead-mini-icon {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 15px;
    height: 15px;

    min-width: 15px;

    font-size: 13px !important;
    line-height: 15px !important;

    color: #231d10 !important;
}


/* SOCIAL TOP */

.fghead-top-social {
    display: flex !important;

    align-items: center !important;

    gap: 10px;
}

.fghead-top-social a {
    color: rgba(35, 29, 16, 0.77) !important;

    font-size: 10px !important;
    line-height: 1 !important;

    font-weight: 600 !important;
}

.fghead-top-social a:hover {
    color: #231d10 !important;
}

.fghead-top-social > span {
    color: rgba(35, 29, 16, 0.35) !important;

    font-size: 9px;
}


/* ==========================================================
   HEADER PRINCIPALE
   ========================================================== */

.fghead-main {
    position: relative;

    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    background:
        rgba(255, 255, 255, 0.98) !important;

    border-bottom:
        1px solid var(--fghead-border) !important;

    box-shadow:
        0 5px 25px rgba(47, 38, 20, 0.035);
}

.fghead-main-inner {
    position: relative;

    display: grid !important;

    grid-template-columns:
        190px
        minmax(0, 1fr)
        190px;

    align-items: center !important;

    gap: 30px;

    min-height: 104px;
}


/* ==========================================================
   LOGO
   ========================================================== */

.fghead-logo {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: flex-start !important;

    justify-self: start;

    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;
}

.fghead-logo img {
    display: block !important;

    width: 140px !important;
    height: auto !important;

    max-width: 140px !important;
    max-height: 88px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.fghead-logo:hover img {
    transform: scale(1.02);
}


/* ==========================================================
   MENU DESKTOP
   ========================================================== */

.fghead-nav {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: clamp(22px, 2.6vw, 40px);

    width: 100%;

    margin: 0 !important;
    padding: 0 !important;
}

.fghead-nav a {
    position: relative;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    min-height: 46px;

    margin: 0 !important;
    padding: 0 !important;

    color: var(--fghead-text) !important;

    font-size: 13px !important;
    line-height: 1 !important;

    font-weight: 500 !important;

    white-space: nowrap;

    transition:
        color 0.22s ease;
}

.fghead-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 3px;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--fghead-gold-1),
            var(--fghead-gold-3)
        );

    transition:
        width 0.25s ease;
}

.fghead-nav a:hover {
    color: var(--fghead-gold-1) !important;
}

.fghead-nav a:hover::after {
    width: 100%;
}


/* ==========================================================
   AZIONI DESTRA
   ========================================================== */

.fghead-actions {
    display: flex !important;

    align-items: center !important;
    justify-content: flex-end !important;

    gap: 12px;

    margin: 0 !important;
    padding: 0 !important;
}


/* CTA */

.fghead-cta {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 22px;

    min-width: 172px;
    min-height: 48px;

    padding: 0 19px !important;
    margin: 0 !important;

    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #282620 0%,
            #181714 100%
        ) !important;

    border: 0 !important;
    border-radius: 5px !important;

    box-shadow:
        0 9px 24px rgba(31, 27, 19, 0.12);

    font-size: 12px !important;
    line-height: 1 !important;

    font-weight: 600 !important;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.fghead-cta:hover {
    color: #ffffff !important;

    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            #9d7418 0%,
            #c79b30 60%,
            #d3ad56 100%
        ) !important;

    box-shadow:
        0 13px 28px rgba(109, 78, 13, 0.18);
}

.fghead-cta-arrow {
    display: inline-block;

    color: inherit !important;

    font-size: 17px !important;
    line-height: 1;

    transition:
        transform 0.25s ease;
}

.fghead-cta:hover .fghead-cta-arrow {
    transform: translateX(4px);
}


/* ==========================================================
   DETAILS MOBILE
   ========================================================== */

.fghead-mobile {
    display: none;
}

.fghead-mobile summary {
    list-style: none !important;
}

.fghead-mobile summary::-webkit-details-marker {
    display: none !important;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1050px) {

    .fghead-container {
        width: min(100% - 36px, 1240px) !important;
    }

    .fghead-top-social {
        display: none !important;
    }

    .fghead-main-inner {
        grid-template-columns:
            minmax(0, 1fr)
            auto;

        min-height: 88px;

        gap: 20px;
    }


    /* logo */

    .fghead-logo img {
        width: 115px !important;

        max-width: 115px !important;
        max-height: 74px !important;
    }


    /* desktop nascosto */

    .fghead-nav,
    .fghead-cta {
        display: none !important;
    }


    /* mobile attivo */

    .fghead-mobile {
        display: block !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* HAMBURGER */

    .fghead-mobile > summary {
        position: relative;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 46px !important;
        height: 46px !important;

        margin: 0 !important;
        padding: 0 !important;

        color: var(--fghead-black) !important;

        background: #ffffff !important;

        border:
            1px solid var(--fghead-border) !important;

        border-radius: 50% !important;

        cursor: pointer;

        user-select: none;
    }

    .fghead-hamburger {
        position: relative;

        display: block !important;

        width: 19px;
        height: 16px;

        margin: 0 !important;
        padding: 0 !important;
    }

    .fghead-hamburger i {
        position: absolute;

        left: 0;

        display: block !important;

        width: 19px !important;
        height: 1.5px !important;

        margin: 0 !important;
        padding: 0 !important;

        background:
            var(--fghead-black) !important;

        border: 0 !important;
        border-radius: 999px;

        transition:
            top 0.25s ease,
            transform 0.25s ease,
            opacity 0.25s ease;
    }

    .fghead-hamburger i:nth-child(1) {
        top: 1px;
    }

    .fghead-hamburger i:nth-child(2) {
        top: 7px;
    }

    .fghead-hamburger i:nth-child(3) {
        top: 13px;
    }


    /* hamburger aperto */

    .fghead-mobile[open]
    .fghead-hamburger i:nth-child(1) {
        top: 7px;

        transform: rotate(45deg);
    }

    .fghead-mobile[open]
    .fghead-hamburger i:nth-child(2) {
        opacity: 0;
    }

    .fghead-mobile[open]
    .fghead-hamburger i:nth-child(3) {
        top: 7px;

        transform: rotate(-45deg);
    }


    /* ======================================================
       PANEL MENU
       ====================================================== */

    .fghead-mobile-panel {
        position: absolute !important;

        z-index: 999999;

        top: 100%;
        left: 0;

        display: block !important;

        width: 100vw !important;

        margin-left:
            calc(50% - 50vw) !important;

        padding:
            18px max(24px, calc((100vw - 650px) / 2))
            25px !important;

        background:
            linear-gradient(
                145deg,
                #ffffff 0%,
                #faf7ef 100%
            ) !important;

        border-top:
            1px solid var(--fghead-border) !important;

        box-shadow:
            0 25px 50px rgba(33, 27, 16, 0.13);
    }


    /* NAV MOBILE */

    .fghead-mobile-nav {
        display: flex !important;

        flex-direction: column !important;

        width: 100%;

        margin: 0 !important;
        padding: 0 !important;
    }

    .fghead-mobile-nav a {
        display: grid !important;

        grid-template-columns:
            38px
            minmax(0, 1fr)
            auto;

        align-items: center !important;

        gap: 14px;

        width: 100%;

        padding: 17px 0 !important;
        margin: 0 !important;

        color: var(--fghead-black) !important;

        border-bottom:
            1px solid var(--fghead-border) !important;

        background: transparent !important;

        transition:
            padding-left 0.2s ease,
            color 0.2s ease;
    }

    .fghead-mobile-nav a:hover {
        padding-left: 5px !important;

        color: var(--fghead-gold-1) !important;
    }

    .fghead-mobile-nav small {
        display: block !important;

        color: var(--fghead-gold-1) !important;

        font-size: 9px !important;
        line-height: 1 !important;

        font-weight: 700 !important;

        letter-spacing: 0.1em;
    }

    .fghead-mobile-nav strong {
        display: block !important;

        color: inherit !important;

        font-size: 16px !important;
        line-height: 1.3 !important;

        font-weight: 600 !important;
    }

    .fghead-mobile-nav > a > span {
        display: block !important;

        color: var(--fghead-gold-1) !important;

        font-size: 18px !important;
        line-height: 1 !important;

        transition:
            transform 0.2s ease;
    }

    .fghead-mobile-nav a:hover > span {
        transform: translateX(4px);
    }


    /* ======================================================
       CTA MOBILE
       ====================================================== */

    .fghead-mobile-contact {
        display: flex !important;

        align-items: center !important;
        justify-content: space-between !important;

        gap: 20px;

        width: 100%;

        margin: 20px 0 0 !important;
        padding: 22px 24px !important;

        color: #ffffff !important;

        background:
            linear-gradient(
                135deg,
                #29261f 0%,
                #181714 100%
            ) !important;

        border:
            1px solid rgba(209, 179, 99, 0.12);

        border-radius: 14px !important;
    }

    .fghead-mobile-contact div {
        margin: 0 !important;
        padding: 0 !important;
    }

    .fghead-mobile-contact small {
        display: block !important;

        margin: 0 0 6px !important;

        color: var(--fghead-gold-3) !important;

        font-size: 9px !important;
        line-height: 1.2 !important;

        font-weight: 700 !important;

        letter-spacing: 0.1em;
    }

    .fghead-mobile-contact strong {
        display: block !important;

        margin: 0 !important;

        color: #ffffff !important;

        font-size: 13px !important;
        line-height: 1.4 !important;

        font-weight: 500 !important;
    }

    .fghead-mobile-contact > a {
        display: inline-flex !important;

        align-items: center !important;
        justify-content: center !important;

        flex: 0 0 auto;

        min-height: 42px;

        padding: 0 17px !important;

        color: #221d13 !important;

        background:
            linear-gradient(
                110deg,
                #e5d29b 0%,
                #c4a052 100%
            ) !important;

        border-radius: 999px !important;

        font-size: 11px !important;
        line-height: 1 !important;

        font-weight: 700 !important;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

    body.admin-bar .fghead {
        top: 46px;
    }

    .fghead-container {
        width: calc(100% - 28px) !important;
    }


    /* ------------------------------------------------------
       TOPBAR MOBILE
       ------------------------------------------------------ */

    .fghead-top-inner {
        min-height: 35px;

        gap: 8px;
    }

    .fghead-top-left {
        min-width: 0;

        gap: 0;
    }

    .fghead-top-social {
        display: none !important;
    }

    .fghead-top-left
    .fghead-top-link {
        min-width: 0;

        max-width: 215px;
    }

    .fghead-top-left
    .fghead-top-link
    span:last-child {
        display: block;

        min-width: 0;

        overflow: hidden;

        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .fghead-top-right {
        margin-left: auto;

        gap: 0;
    }

    /* telefono nascosto */

    .fghead-top-right
    .fghead-top-link:first-child {
        display: none !important;
    }

    .fghead-top-wa {
        padding-left: 10px !important;

        font-size: 10px !important;
    }


    /* ------------------------------------------------------
       MAIN MOBILE
       ------------------------------------------------------ */

    .fghead-main-inner {
        min-height: 79px;

        grid-template-columns:
            minmax(0, 1fr)
            auto;

        gap: 12px;
    }

    .fghead-logo img {
        width: 94px !important;

        max-width: 94px !important;
        max-height: 64px !important;
    }


    /* hamburger */

    .fghead-mobile > summary {
        width: 44px !important;
        height: 44px !important;
    }


    /* panel */

    .fghead-mobile-panel {
        padding:
            12px 18px 20px !important;
    }

    .fghead-mobile-nav a {
        grid-template-columns:
            34px
            minmax(0, 1fr)
            auto;

        padding: 16px 0 !important;
    }

    .fghead-mobile-nav strong {
        font-size: 15px !important;
    }


    /* CTA */

    .fghead-mobile-contact {
        flex-direction: column !important;

        align-items: flex-start !important;

        gap: 17px;

        padding: 20px !important;
    }

    .fghead-mobile-contact > a {
        width: 100% !important;

        min-height: 46px;

        text-align: center;
    }

}


/* ==========================================================
   SMARTPHONE PICCOLI
   ========================================================== */

@media (max-width: 420px) {

    .fghead-top-left
    .fghead-top-link {
        max-width: 175px;
    }

    .fghead-logo img {
        width: 86px !important;

        max-width: 86px !important;
    }

}


/* ==========================================================
   360PX
   ========================================================== */

@media (max-width: 360px) {

    .fghead-top-left
    .fghead-top-link {
        max-width: 145px;
    }

    .fghead-top-link {
        font-size: 10px !important;
    }

}