:root {
    --cream: #f3e9d7;
    --cream-soft: #faf5eb;
    --cream-deep: #e8d7bd;

    --green: #24382c;
    --green-deep: #19291f;
    --green-soft: #667463;

    --terracotta: #b85f3d;
    --rust: #93452f;

    --brown: #49372d;
    --brown-soft: #735f50;

    --line: rgba(36, 56, 44, .18);

    --container: 1240px;
    --radius: 30px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream-soft);
    color: var(--green);
    font-family:
        Inter,
        Avenir,
        "Helvetica Neue",
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 0;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    width: fit-content;
    flex-direction: column;
    line-height: 1;
}

.brand-main {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    letter-spacing: .04em;
}

.brand-sub {
    margin-top: 7px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .24em;
}

.desktop-nav {
    display: flex;
    gap: 34px;
    font-size: 13px;
}

.desktop-nav a {
    opacity: .75;
    transition: opacity .2s ease;
}

.desktop-nav a:hover {
    opacity: 1;
}

.header-inner > .button {
    justify-self: end;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 26px;

    background: var(--green);
    color: var(--cream-soft);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;

    transition:
        transform .2s ease,
        background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
    background: var(--terracotta);
}

.button-small {
    min-height: 44px;
    padding-inline: 21px;
    font-size: 10px;
}

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

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.eyebrow {
    display: block;
    margin-bottom: 22px;

    color: var(--terracotta);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    line-height: .94;
}

h1 em,
h2 em {
    display: block;
    font-weight: 400;
    color: var(--terracotta);
}

.hero {
    position: relative;
    overflow: hidden;

    min-height: 820px;
    padding: 155px 0 100px;

    background:
        radial-gradient(circle at 89% 8%, rgba(184,95,61,.14), transparent 28%),
        var(--cream);
}

.hero-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 80px;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 35px;
}

.hero h1 {
    max-width: 680px;
    font-size: clamp(64px, 6.8vw, 104px);
    letter-spacing: -.05em;
}

.hero-lead {
    max-width: 520px;
    margin: 34px 0 0;

    color: var(--brown-soft);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 42px;
}

.photo-slot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(36,56,44,.16),
            rgba(184,95,61,.10)
        ),
        var(--cream-deep);

    color: rgba(36,56,44,.55);
}

.photo-slot::before,
.photo-slot::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(36,56,44,.14);
    border-radius: 999px;
}

.photo-slot::before {
    width: 70%;
    aspect-ratio: 1;
}

.photo-slot::after {
    width: 47%;
    aspect-ratio: 1;
}

.photo-slot span {
    position: relative;
    z-index: 2;

    padding: 11px 15px;
    border-radius: 999px;

    background: rgba(250,245,235,.72);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-visual {
    min-height: 560px;
    border-radius: 220px 220px 30px 30px;
}

.hero-stamp {
    position: absolute;
    right: -10px;
    bottom: 44px;

    display: flex;
    width: 112px;
    height: 112px;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--terracotta);
    color: var(--cream);

    transform: rotate(8deg);
}

.hero-stamp span {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
}

.hero-stamp strong {
    margin: 3px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.statement {
    padding: 145px 0;
    background: var(--green);
    color: var(--cream);
}

.statement-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 70px;
}

.statement-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;

    border-top: 1px solid rgba(243,233,215,.28);
    padding-top: 16px;
}

.statement-label span,
.statement-label p {
    margin: 0;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.statement-copy h2 {
    max-width: 850px;
    font-size: clamp(48px, 5.6vw, 88px);
    letter-spacing: -.045em;
}

.statement-copy h2 em {
    color: #d8ad78;
}

.statement-copy p {
    max-width: 650px;
    margin: 34px 0 0;
    color: rgba(243,233,215,.72);
    font-size: 16px;
    line-height: 1.8;
}

.products {
    padding: 140px 0;
    background: var(--cream-soft);
}

.section-heading {
    margin-bottom: 65px;
}

.section-heading h2 {
    font-size: clamp(50px, 5vw, 76px);
    letter-spacing: -.04em;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.22fr .78fr;
    gap: 28px;
}

.product-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--cream);
}

.product-photo {
    height: 430px;
}

.product-card-large .product-photo {
    height: 560px;
}

.product-copy {
    padding: 30px 32px 36px;
}

.product-copy > span {
    color: var(--terracotta);
    font-size: 10px;
    font-weight: 800;
}

.product-copy h3 {
    margin-top: 12px;
    font-size: 39px;
}

.product-copy p {
    max-width: 440px;
    margin: 18px 0 0;
    color: var(--brown-soft);
    line-height: 1.7;
}

.parma {
    padding: 140px 0;
    background: #dfccb0;
}

.parma-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.parma-visual {
    min-height: 600px;
    border-radius: 30px 200px 30px 30px;
}

.parma-copy h2 {
    font-size: clamp(54px, 5.5vw, 86px);
    letter-spacing: -.045em;
}

.parma-copy p {
    max-width: 480px;
    margin: 30px 0;
    color: var(--brown-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.7;
}

.closing {
    padding: 150px 0;
    background: var(--terracotta);
    color: var(--cream);
    text-align: center;
}

.closing-inner {
    max-width: 900px;
}

.closing .eyebrow {
    color: var(--cream);
    opacity: .72;
}

.closing h2 {
    font-size: clamp(56px, 6vw, 94px);
    letter-spacing: -.05em;
}

.closing h2 em {
    color: var(--green-deep);
}

.closing p {
    max-width: 570px;
    margin: 30px auto 38px;
    font-size: 16px;
    line-height: 1.8;
    opacity: .82;
}

.button-light {
    background: var(--cream);
    color: var(--green);
}

footer {
    padding: 42px 0;
    background: var(--green-deep);
    color: var(--cream);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-inner > div {
    display: flex;
    flex-direction: column;
}

.footer-inner strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
}

.footer-inner span,
.footer-inner p {
    margin: 4px 0 0;
    color: rgba(243,233,215,.55);
    font-size: 10px;
    letter-spacing: .08em;
}

@media (max-width: 900px) {

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .site-header {
        padding-top: 21px;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 130px 0 70px;
    }

    .hero-grid,
    .statement-grid,
    .product-grid,
    .parma-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 48px;
    }

    .hero h1 {
        font-size: clamp(56px, 17vw, 82px);
    }

    .hero-visual {
        min-height: 480px;
    }

    .hero-stamp {
        right: 15px;
        bottom: 30px;
    }

    .statement,
    .products,
    .parma,
    .closing {
        padding: 90px 0;
    }

    .statement-grid {
        gap: 42px;
    }

    .statement-copy h2,
    .section-heading h2,
    .parma-copy h2,
    .closing h2 {
        font-size: clamp(47px, 13vw, 68px);
    }

    .product-grid {
        gap: 20px;
    }

    .product-card-large .product-photo,
    .product-photo {
        height: 420px;
    }

    .parma-grid {
        gap: 55px;
    }

    .parma-visual {
        min-height: 480px;
    }
}

@media (max-width: 560px) {

    .header-inner > .button {
        min-height: 40px;
        padding-inline: 15px;
        font-size: 8px;
    }

    .brand-main {
        font-size: 25px;
    }

    .brand-sub {
        font-size: 7px;
    }

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

    .hero-visual {
        min-height: 410px;
        border-radius: 150px 150px 24px 24px;
    }

    .product-card-large .product-photo,
    .product-photo {
        height: 340px;
    }

    .parma-visual {
        min-height: 390px;
        border-radius: 24px 120px 24px 24px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}



/* =========================================================
   OVEN GLUTEN FREE — A6 VISUAL CORE
   SINGLE SOURCE OF TRUTH
   ========================================================= */


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

.hero {
    overflow: visible;
}

.hero-stamp {
    z-index: 14;

    right: 50%;
    bottom: -72px;

    width: 176px;
    height: 176px;

    padding: 22px;

    border:
        9px solid var(--cream);

    border-radius: 50%;

    background:
        var(--terracotta);

    color:
        var(--cream);

    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    transform:
        translateX(50%)
        rotate(-2deg);

    box-shadow:
        0 18px 42px
        rgba(73,55,45,.10);
}

.hero-stamp .stamp-top,
.hero-stamp .stamp-bottom {
    display: block;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .22em;
    text-transform: uppercase;
}

.hero-stamp .stamp-main {
    margin: 7px 0;

    display: flex;
    flex-direction: column;

    align-items: center;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight: 700;

    line-height: .82;
}

.hero-stamp .stamp-main span {
    font-size: 31px;
    letter-spacing: -.045em;
}

.statement {
    padding-top: 205px;
}


/* ---------------------------------------------------------
   FEATURES
   --------------------------------------------------------- */

.features {
    position: relative;

    overflow: hidden;

    padding:
        135px 0
        150px;

    background:
        #d9ddca;
}

.features .container {
    position: relative;
    z-index: 3;
}


/* heading */

.features-heading {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    column-gap: 70px;

    margin-bottom: 60px;
}

.features-heading .eyebrow {
    grid-column:
        1 / -1;
}

.features-heading h2 {
    max-width: 710px;

    color:
        var(--green);

    font-size:
        clamp(48px, 5vw, 76px);

    letter-spacing:
        -.045em;
}

.features-heading h2 em {
    color:
        var(--terracotta);
}

.features-heading > p {
    max-width: 430px;

    align-self: end;

    margin:
        10px 0 0;

    color:
        var(--brown-soft);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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


/* ---------------------------------------------------------
   FEATURE GRID
   --------------------------------------------------------- */

.feature-grid {
    display: grid;

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

    gap: 20px;
}


/* ---------------------------------------------------------
   CARD CORE
   --------------------------------------------------------- */

.feature-card {
    --card-bg:
        #f5efe5;

    --card-accent:
        var(--terracotta);

    --card-text:
        var(--green);

    --card-body:
        var(--brown-soft);

    position: relative;

    isolation: isolate;

    overflow: hidden;

    min-height: 335px;

    padding: 30px;

    border:
        1px solid
        rgba(36,56,44,.10);

    border-radius:
        22px;

    background:
        var(--card-bg);

    color:
        var(--card-text);

    box-shadow:
        0 14px 34px
        rgba(36,56,44,.025);

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


/*
   Hover volutamente NON modifica
   background / opacity / filter.
*/

.feature-card:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(36,56,44,.20);

    box-shadow:
        0 18px 42px
        rgba(36,56,44,.065);
}


.feature-card > * {
    position: relative;
    z-index: 3;
}


/* ---------------------------------------------------------
   CARD 01 — IVORY
   --------------------------------------------------------- */

.feature-card-01 {
    --card-bg:
        linear-gradient(
            145deg,
            #f7f1e7 0%,
            #f1e8db 100%
        );
}


/* ---------------------------------------------------------
   CARD 02/03 — VENEZIAN PLASTER SYSTEM
   --------------------------------------------------------- */

.feature-card-02,
.feature-card-03 {
    background:
        linear-gradient(
            145deg,
            #f3ecdf 0%,
            #ece2d3 100%
        );
}


/*
  Prima velatura:
  macchie larghe e morbide.
*/

.feature-card-02::before,
.feature-card-03::before {
    content: "";

    position: absolute;

    z-index: 1;

    inset: -15%;

    pointer-events: none;

    opacity: .86;

    transform:
        rotate(-4deg);
}


/*
  Seconda velatura:
  micro passate di spatola.
*/

.feature-card-02::after,
.feature-card-03::after {
    content: "";

    position: absolute;

    z-index: 2;

    inset: 0;

    pointer-events: none;

    opacity: .20;

    background:

        repeating-linear-gradient(
            11deg,
            transparent 0 18px,
            rgba(255,255,255,.30) 19px 21px,
            transparent 22px 49px
        ),

        repeating-linear-gradient(
            101deg,
            transparent 0 38px,
            rgba(73,55,45,.035) 39px 40px,
            transparent 41px 78px
        );

    mix-blend-mode:
        soft-light;
}


/* warm plaster */

.feature-card-02::before {
    background:

        radial-gradient(
            ellipse at 19% 24%,
            rgba(255,255,255,.54)
            0 10%,
            transparent 33%
        ),

        radial-gradient(
            ellipse at 73% 18%,
            rgba(216,173,120,.15)
            0 15%,
            transparent 42%
        ),

        radial-gradient(
            ellipse at 76% 76%,
            rgba(184,95,61,.075)
            0 13%,
            transparent 39%
        ),

        radial-gradient(
            ellipse at 35% 81%,
            rgba(255,255,255,.34)
            0 14%,
            transparent 39%
        );
}


/* sage/cream plaster */

.feature-card-03::before {
    background:

        radial-gradient(
            ellipse at 22% 21%,
            rgba(255,255,255,.48)
            0 12%,
            transparent 35%
        ),

        radial-gradient(
            ellipse at 74% 21%,
            rgba(102,116,99,.105)
            0 15%,
            transparent 43%
        ),

        radial-gradient(
            ellipse at 68% 77%,
            rgba(216,173,120,.085)
            0 14%,
            transparent 41%
        ),

        radial-gradient(
            ellipse at 28% 79%,
            rgba(255,255,255,.29)
            0 14%,
            transparent 40%
        );
}


/* ---------------------------------------------------------
   CARD 04 — GREEN
   --------------------------------------------------------- */

.feature-card-04 {
    --card-bg:
        linear-gradient(
            145deg,
            #234333 0%,
            #183629 100%
        );

    --card-text:
        var(--cream);

    --card-body:
        rgba(243,233,215,.68);

    --card-accent:
        #d8ad78;
}


/* ---------------------------------------------------------
   ICON SYSTEM
   --------------------------------------------------------- */

.feature-icon {
    display: flex;

    width: 82px;
    height: 82px;

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

    margin-bottom: 52px;

    border-radius:
        21px;

    background:
        rgba(238,226,206,.91);

    color:
        var(--card-accent);

    transition:
        transform .24s ease,
        background-color .24s ease;
}


.feature-icon svg {
    width: 46px;
    height: 46px;

    fill: none;

    stroke:
        currentColor;

    stroke-width:
        1.8;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;
}


.feature-card:hover .feature-icon {
    transform:
        translateY(-1px)
        scale(1.025);
}


.feature-card-04 .feature-icon {
    background:
        rgba(243,233,215,.10);
}


/* ---------------------------------------------------------
   FEATURE TYPOGRAPHY
   --------------------------------------------------------- */

.feature-number {
    display: block;

    margin-bottom: 12px;

    color:
        var(--card-accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing:
        .16em;
}


.feature-card h3 {
    margin: 0;

    color:
        var(--card-text);

    font-size: 30px;
    line-height: 1.05;
}


.feature-card p {
    max-width: 260px;

    margin:
        16px 0 0;

    color:
        var(--card-body);

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


/* ---------------------------------------------------------
   WHEAT ILLUSTRATION
   --------------------------------------------------------- */

.feature-wheat {
    position: absolute;

    z-index: 1;

    width: 225px;
    height: auto;

    pointer-events: none;

    color:
        rgba(36,56,44,.17);
}


.feature-wheat path {
    fill: none;

    stroke:
        currentColor;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;
}


.feature-wheat .wheat-stem,
.feature-wheat .wheat-axis {
    stroke-width:
        1.35;
}


.feature-wheat .wheat-grain,
.feature-wheat .wheat-leaf {
    stroke-width:
        1.25;
}


.feature-wheat .wheat-awn {
    stroke-width:
        .85;
}


.feature-wheat-left {
    left: -15px;
    bottom: -80px;

    transform:
        rotate(-5deg);
}


.feature-wheat-right {
    right: -42px;
    top: -82px;

    width: 170px;

    transform:
        scaleX(-1)
        rotate(-8deg);

    opacity: .76;
}


/* ---------------------------------------------------------
   PRODUCT CARDS
   Manteniamo i markup già presenti ma coerenti.
   --------------------------------------------------------- */

.product-card {
    position: relative;
}


.product-card-glow {
    background:
        linear-gradient(
            150deg,
            #efe4d3 0%,
            #eadbc5 100%
        );
}


.product-card-mist {
    background:
        linear-gradient(
            150deg,
            #eee6da 0%,
            #e5dfd2 100%
        );
}


.product-wheat {
    position: absolute;

    right: 24px;
    bottom: 22px;

    z-index: 1;

    width: 92px;
    height: 92px;

    fill: none;

    stroke:
        rgba(184,95,61,.30);

    stroke-width: 1.35;

    stroke-linecap: round;
    stroke-linejoin: round;

    pointer-events: none;
}


/* ---------------------------------------------------------
   VENEZIAN BAND
   --------------------------------------------------------- */

.venetian-band {
    position: relative;

    overflow: hidden;

    padding: 115px 0;

    background:

        radial-gradient(
            ellipse at 18% 28%,
            rgba(255,255,255,.34),
            transparent 33%
        ),

        radial-gradient(
            ellipse at 79% 67%,
            rgba(184,95,61,.055),
            transparent 39%
        ),

        linear-gradient(
            145deg,
            #eee4d4 0%,
            #e9ddca 100%
        );
}


.venetian-band::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .16;

    background:

        repeating-linear-gradient(
            12deg,
            transparent 0 22px,
            rgba(255,255,255,.28) 23px 25px,
            transparent 26px 58px
        );
}


.venetian-inner {
    position: relative;

    z-index: 2;

    max-width: 850px;

    text-align: center;
}


.venetian-inner h2 {
    font-size:
        clamp(48px, 5.1vw, 78px);

    letter-spacing:
        -.045em;
}


.venetian-inner h2 em {
    color:
        var(--terracotta);
}


.venetian-inner p {
    max-width: 620px;

    margin:
        28px auto 0;

    color:
        var(--brown-soft);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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


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

@media (max-width: 1000px) {

    .features-heading {
        grid-template-columns: 1fr;
    }

    .features-heading > p {
        margin-top: 26px;
    }

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

    .feature-wheat {
        width: 175px;
    }

}


@media (max-width: 600px) {

    .hero-stamp {
        width: 128px;
        height: 128px;

        bottom: -54px;

        border-width: 7px;

        padding: 14px;
    }

    .hero-stamp .stamp-main span {
        font-size: 22px;
    }

    .hero-stamp .stamp-top,
    .hero-stamp .stamp-bottom {
        font-size: 5px;
    }

    .statement {
        padding-top: 150px;
    }


    .features {
        padding:
            90px 0
            100px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 290px;
    }

    .feature-icon {
        width: 72px;
        height: 72px;

        margin-bottom: 38px;
    }

    .feature-icon svg {
        width: 41px;
        height: 41px;
    }

    .feature-wheat {
        width: 125px;

        opacity: .65;
    }

    .feature-wheat-left {
        left: -55px;
        bottom: -20px;
    }

    .feature-wheat-right {
        right: -55px;
        top: -20px;
    }

    .venetian-band {
        padding:
            88px 0;
    }

}


/* =========================================================
   OVEN GLUTEN FREE — A6B CARD REFINEMENT
   ========================================================= */


/* ---------------------------------------------------------
   RIMUOVIAMO DEFINITIVAMENTE IL GRANO SVG GENERATO
   --------------------------------------------------------- */

.feature-wheat {
    display: none !important;
}


/* ---------------------------------------------------------
   3 CARD CHIARE — TRE TONI APPENA DIVERSI
   --------------------------------------------------------- */

.feature-card-01 {
    background:
        linear-gradient(
            145deg,
            #f7f1e8 0%,
            #f3ecdf 100%
        );
}


.feature-card-02 {
    background:
        linear-gradient(
            145deg,
            #f6efe4 0%,
            #f0e5d6 100%
        );
}


.feature-card-03 {
    background:
        linear-gradient(
            145deg,
            #f4f2ea 0%,
            #eceedf 100%
        );
}


/* ---------------------------------------------------------
   SPATOLATO 02 — PIÙ LEGGERO
   --------------------------------------------------------- */

.feature-card-02::before {
    opacity: .52;

    background:

        radial-gradient(
            ellipse at 18% 21%,
            rgba(255,255,255,.48)
            0 13%,
            transparent 36%
        ),

        radial-gradient(
            ellipse at 76% 25%,
            rgba(197,156,119,.10)
            0 16%,
            transparent 43%
        ),

        radial-gradient(
            ellipse at 67% 76%,
            rgba(184,95,61,.045)
            0 15%,
            transparent 41%
        ),

        radial-gradient(
            ellipse at 31% 79%,
            rgba(255,255,255,.28)
            0 14%,
            transparent 39%
        );
}


/* ---------------------------------------------------------
   SPATOLATO 03 — SALVIA QUASI BIANCA
   --------------------------------------------------------- */

.feature-card-03::before {
    opacity: .46;

    background:

        radial-gradient(
            ellipse at 21% 21%,
            rgba(255,255,255,.50)
            0 13%,
            transparent 36%
        ),

        radial-gradient(
            ellipse at 75% 24%,
            rgba(112,130,106,.07)
            0 15%,
            transparent 42%
        ),

        radial-gradient(
            ellipse at 68% 76%,
            rgba(216,173,120,.045)
            0 15%,
            transparent 40%
        ),

        radial-gradient(
            ellipse at 29% 80%,
            rgba(255,255,255,.27)
            0 14%,
            transparent 39%
        );
}


/* ---------------------------------------------------------
   TEXTURE — QUASI IMPERCETTIBILE
   --------------------------------------------------------- */

.feature-card-02::after,
.feature-card-03::after {
    opacity: .10;
}


/* ---------------------------------------------------------
   VERDE PIÙ MORBIDO
   --------------------------------------------------------- */

.feature-card-04 {
    --card-bg:
        linear-gradient(
            145deg,
            #315542 0%,
            #284938 100%
        );

    background:
        var(--card-bg);
}


/* ---------------------------------------------------------
   ICONE PIÙ IMPORTANTI
   --------------------------------------------------------- */

.feature-icon {
    width: 88px;
    height: 88px;

    border-radius: 23px;

    margin-bottom: 48px;
}


.feature-icon svg {
    width: 51px;
    height: 51px;

    stroke-width: 1.75;
}


/* ---------------------------------------------------------
   HOVER — NESSUN CAMBIO COLORE
   --------------------------------------------------------- */

.feature-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(36,56,44,.16);

    box-shadow:
        0 18px 38px
        rgba(36,56,44,.055);
}


.feature-card:hover .feature-icon {
    transform:
        translateY(-2px)
        scale(1.015);
}


/* ---------------------------------------------------------
   PREPARAZIONE PER IMMAGINE GRANO REALE DELL'UTENTE

   Quando sarà caricata useremo:

   <img class="feature-wheat-photo" ...>

   centrata a cavallo tra CARD 02 e CARD 03.
   --------------------------------------------------------- */

.feature-wheat-photo {
    position: absolute;

    z-index: 6;

    top: -74px;
    left: 50%;

    width: clamp(180px, 14vw, 270px);

    height: auto;

    transform:
        translateX(-50%)
        rotate(-5deg);

    pointer-events: none;
}


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

@media (max-width: 600px) {

    .feature-icon {
        width: 76px;
        height: 76px;

        border-radius: 20px;
    }

    .feature-icon svg {
        width: 44px;
        height: 44px;
    }

    .feature-wheat-photo {
        top: -48px;

        width: 150px;
    }

}


/* =========================================================
   OVEN GLUTEN FREE — A6C2 REAL IMAGES
   ========================================================= */


/* ---------------------------------------------------------
   GRANO REALE
   Taglia visivamente la parte alta delle card 02 e 03.
   --------------------------------------------------------- */

.feature-grid {
    position: relative;
}

.feature-wheat-photo {
    position: absolute;

    z-index: 10;

    left: 50%;
    top: -58px;

    width: clamp(220px, 17vw, 310px);
    height: auto;

    transform:
        translateX(-50%)
        rotate(-3deg);

    opacity: .92;

    pointer-events: none;
    user-select: none;
}


/* ---------------------------------------------------------
   SOLE REALE
   Sfondo chiaro / materico.
   --------------------------------------------------------- */

.venetian-band {
    position: relative;
    overflow: hidden;
}

.venetian-sun {
    position: absolute;

    z-index: 2;

    right: 5%;
    top: 28px;

    width: clamp(120px, 10vw, 175px);
    height: auto;

    opacity: .62;

    transform:
        rotate(5deg);

    pointer-events: none;
    user-select: none;
}

.venetian-inner {
    position: relative;
    z-index: 3;
}


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

@media (max-width: 1000px) {

    .feature-wheat-photo {
        top: -48px;
        width: 200px;
    }

    .venetian-sun {
        width: 130px;
        right: 3%;
    }

}


@media (max-width: 600px) {

    .feature-wheat-photo {
        top: -38px;
        width: 150px;
    }

    .venetian-sun {
        width: 100px;

        right: -15px;
        top: 22px;

        opacity: .48;
    }

}


/* =========================================================
   OVEN GLUTEN FREE — A6C3 ARTWORK POSITIONING
   ========================================================= */


/* ---------------------------------------------------------
   GRANO — dentro la card 04 verde, piccolo e decorativo
   --------------------------------------------------------- */

.feature-card-04 {
    position: relative;
    overflow: hidden;
}

.feature-card-04 .feature-wheat-photo {
    position: absolute;

    z-index: 1;

    right: -8px;
    bottom: -4px;
    left: auto;
    top: auto;

    width: 128px;
    height: auto;

    transform:
        rotate(-8deg);

    opacity: .26;

    pointer-events: none;
    user-select: none;
}


/* Il contenuto della card resta sopra */
.feature-card-04 > :not(.feature-wheat-photo) {
    position: relative;
    z-index: 3;
}


/* ---------------------------------------------------------
   SOLE — centrale sopra il titolo nella sezione chiara
   --------------------------------------------------------- */

.venetian-band {
    position: relative;
    overflow: hidden;
}

.venetian-sun {
    position: absolute;

    z-index: 2;

    top: 42px;
    left: 50%;
    right: auto;

    width: clamp(155px, 12vw, 230px);
    height: auto;

    transform:
        translateX(-50%) rotate(0deg);

    opacity: .58;

    pointer-events: none;
    user-select: none;
}

.venetian-inner {
    position: relative;
    z-index: 3;
    padding-top: 78px;
}


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

@media (max-width: 1000px) {

    .feature-card-04 .feature-wheat-photo {
        width: 108px;
        right: -10px;
        bottom: 0;
        opacity: .24;
    }

    .venetian-sun {
        width: 170px;
        top: 34px;
    }

    .venetian-inner {
        padding-top: 68px;
    }

}

@media (max-width: 600px) {

    .feature-card-04 .feature-wheat-photo {
        width: 88px;
        right: -8px;
        bottom: -2px;
        opacity: .22;
    }

    .venetian-sun {
        width: 128px;
        top: 24px;
    }

    .venetian-inner {
        padding-top: 58px;
    }

}


/* =========================================================
   OVEN GLUTEN FREE — A6C4 WHEAT MOVE TO GREEN STATEMENT
   ========================================================= */


/* Disattiva eventuali vecchie istanze residue */
.feature-wheat-photo {
    display: none !important;
}


/* ---------------------------------------------------------
   GRANO NELLA SEZIONE VERDE GRANDE
   --------------------------------------------------------- */

.statement {
    position: relative;
    overflow: hidden;
}

.statement .container {
    position: relative;
    z-index: 3;
}

.statement::after {
    content: "";

    position: absolute;
    z-index: 1;

    right: 1.8%;
    bottom: 52px;

    width: clamp(270px, 18vw, 350px);
    aspect-ratio: 1 / 1;

    background-image: url('/assets/img/grano-display.png?v=a6c4');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: .46;

    pointer-events: none;
    user-select: none;
}


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

@media (max-width: 1000px) {

    .statement::after {
        right: 3%;
        bottom: 26px;
        width: 145px;
        opacity: .22;
    }

}

@media (max-width: 600px) {

    .statement::after {
        right: -8px;
        bottom: 18px;
        width: 110px;
        opacity: .18;
    }

}


/* =========================================================
   OVEN GLUTEN FREE — A8 PHOTO SYSTEM
   ========================================================= */


/* ---------------------------------------------------------
   REAL PHOTO FRAMES
   --------------------------------------------------------- */

.media-frame.has-photo {
    position: relative;
    overflow: hidden;
    background: none;
}

.media-frame.has-photo::before,
.media-frame.has-photo::after {
    display: none !important;
}

.media-frame.has-photo > .site-photo {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.001);

    transition:
        transform .8s
        cubic-bezier(.2,.7,.2,1);
}

.media-frame.has-photo:hover > .site-photo {
    transform: scale(1.025);
}


/* HERO */

.hero-photo {
    object-position: 50% 50%;
}


/* MAIN PRODUCTS */

.product-main-photo {
    object-position: 50% 48%;
}

.product-detail-photo {
    object-position: 50% 50%;
}


/* PARMA */

.parma-photo {
    object-position: 50% 48%;
}


/* =========================================================
   NON SOLO PIZZA
   ========================================================= */

.bakery {
    position: relative;
    overflow: hidden;

    padding: 140px 0 165px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(184,95,61,.07),
            transparent 28%
        ),
        #e4d4bc;
}


.bakery-heading {
    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 68px;
}


.bakery-heading h2 {
    max-width: 760px;

    font-size:
        clamp(52px, 5.4vw, 82px);

    letter-spacing: -.045em;
}


.bakery-heading h2 em {
    color: var(--terracotta);
}


.bakery-heading > p {
    max-width: 430px;

    margin:
        0 0 8px;

    color:
        var(--brown-soft);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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


.bakery-grid {
    display: grid;

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

    gap: 26px;

    align-items: start;
}


.bakery-card {
    margin: 0;
}


.bakery-card-muffin {
    margin-top: 48px;
}


.bakery-photo {
    position: relative;

    overflow: hidden;

    border-radius: 25px;

    background: #d6c4a9;
}


.bakery-card-bread .bakery-photo {
    aspect-ratio: .92;
}


.bakery-card-muffin .bakery-photo {
    aspect-ratio: 1;
}


.bakery-card-sweets .bakery-photo {
    aspect-ratio: .94;
}


.bakery-photo img {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s
        cubic-bezier(.2,.7,.2,1);
}


.bakery-card:hover .bakery-photo img {
    transform: scale(1.025);
}


.bakery-card-bread img {
    object-position: 50% 50%;
}


.bakery-card-muffin img {
    object-position: 50% 52%;
}


.bakery-card-sweets img {
    object-position: 50% 50%;
}


.bakery-card figcaption {
    padding: 24px 4px 0;
}


.bakery-card figcaption > span {
    display: block;

    margin-bottom: 10px;

    color: var(--terracotta);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .16em;
}


.bakery-card h3 {
    font-size: 35px;
    line-height: 1.04;
}


.bakery-card p {
    max-width: 330px;

    margin: 14px 0 0;

    color: var(--brown-soft);

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


/* =========================================================
   OVEN GALLERY
   ========================================================= */

.oven-gallery {
    padding: 140px 0 150px;

    background:
        var(--cream-soft);
}


.oven-gallery-heading {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    column-gap: 70px;

    margin-bottom: 64px;
}


.oven-gallery-heading .eyebrow {
    grid-column: 1 / -1;
}


.oven-gallery-heading h2 {
    max-width: 720px;

    font-size:
        clamp(50px, 5.2vw, 80px);

    letter-spacing: -.045em;
}


.oven-gallery-heading h2 em {
    color: var(--terracotta);
}


.oven-gallery-heading > p {
    max-width: 400px;

    align-self: end;

    margin:
        0 0 7px;

    color: var(--brown-soft);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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


.oven-gallery-grid {
    display: grid;

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

    gap: 20px;
}


.gallery-shot {
    position: relative;

    overflow: hidden;

    margin: 0;

    border-radius: 24px;

    background: var(--cream-deep);
}


.gallery-shot img {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .85s
        cubic-bezier(.2,.7,.2,1);
}


.gallery-shot:hover img {
    transform: scale(1.025);
}


/* ROW 1 */

.gallery-shot-01 {
    grid-column: span 6;
    height: clamp(310px, 27vw, 430px);
}

.gallery-shot-02 {
    grid-column: span 6;
    height: clamp(310px, 27vw, 430px);
}


/* ROW 2 */

.gallery-shot-03 {
    grid-column: span 3;
    height: clamp(410px, 36vw, 560px);
}

.gallery-shot-04 {
    grid-column: span 6;
    height: clamp(410px, 36vw, 560px);
}

.gallery-shot-05 {
    grid-column: span 3;
    height: clamp(410px, 36vw, 560px);
}


.gallery-shot-01 img {
    object-position: 50% 50%;
}

.gallery-shot-02 img {
    object-position: 50% 50%;
}

.gallery-shot-03 img {
    object-position: 50% 50%;
}

.gallery-shot-04 img {
    object-position: 50% 50%;
}

.gallery-shot-05 img {
    object-position: 50% 50%;
}


/* =========================================================
   A8 RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .bakery-heading,
    .oven-gallery-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .bakery-heading > p,
    .oven-gallery-heading > p {
        margin-top: 8px;
    }

    .bakery-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .bakery-card-muffin {
        margin-top: 0;
    }

    .bakery-card-sweets {
        grid-column: 1 / -1;
        width: calc(50% - 13px);
        justify-self: center;
    }


    .gallery-shot-01,
    .gallery-shot-02,
    .gallery-shot-04 {
        grid-column: span 6;
    }

    .gallery-shot-03,
    .gallery-shot-05 {
        grid-column: span 6;
    }

    .gallery-shot-01,
    .gallery-shot-02 {
        height: 360px;
    }

    .gallery-shot-03,
    .gallery-shot-04,
    .gallery-shot-05 {
        height: 420px;
    }

}


@media (max-width: 600px) {

    .bakery,
    .oven-gallery {
        padding:
            90px 0
            100px;
    }


    .bakery-heading,
    .oven-gallery-heading {
        margin-bottom: 45px;
    }


    .bakery-heading h2,
    .oven-gallery-heading h2 {
        font-size:
            clamp(45px, 12vw, 62px);
    }


    .bakery-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }


    .bakery-card-sweets {
        grid-column: auto;
        width: 100%;
    }


    .bakery-card-bread .bakery-photo,
    .bakery-card-muffin .bakery-photo,
    .bakery-card-sweets .bakery-photo {
        aspect-ratio: 1 / 1.08;
    }


    .oven-gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    .gallery-shot-01,
    .gallery-shot-02,
    .gallery-shot-03,
    .gallery-shot-04,
    .gallery-shot-05 {
        grid-column: auto;
        height: auto;
    }


    .gallery-shot-01,
    .gallery-shot-02,
    .gallery-shot-04 {
        aspect-ratio: 1.18;
    }


    .gallery-shot-03,
    .gallery-shot-05 {
        aspect-ratio: .82;
    }

}


/* =========================================================
   OVEN GLUTEN FREE — A8.2 PHOTO RATIO NORMALIZATION
   Mantiene il rapporto naturale delle foto e sostituisce
   le vecchie altezze dei placeholder.
   ========================================================= */


/* ---------------------------------------------------------
   CORE IMAGE BEHAVIOUR
   --------------------------------------------------------- */

html body .media-frame.has-photo {
    position: relative;
    overflow: hidden;
}

html body .media-frame.has-photo > img.site-photo {
    position: absolute;
    inset: 0;

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

    object-fit: cover !important;
    image-orientation: from-image;

    display: block;
}


/* ---------------------------------------------------------
   HERO — GF9
   Vecchio box troppo stretto/alto.
   --------------------------------------------------------- */

html body .hero-visual.media-frame.has-photo {
    width: 100%;

    height: auto !important;
    min-height: 0 !important;

    aspect-ratio: 4 / 5;
}

html body .hero-visual.media-frame.has-photo > .hero-photo {
    object-position: 52% 50%;
}


/* ---------------------------------------------------------
   PRODUCT PHOTOS — GF5 / GF3
   Fotografia classica 4:3 invece di altezze placeholder.
   --------------------------------------------------------- */

html body .product-card-large
.product-photo.media-frame.has-photo,

html body .product-card
.product-photo.media-frame.has-photo {

    width: 100%;

    height: auto !important;
    min-height: 0 !important;

    aspect-ratio: 4 / 3;
}


html body
.product-photo.media-frame.has-photo
> .product-main-photo {

    object-position: 50% 50%;
}


html body
.product-photo.media-frame.has-photo
> .product-detail-photo {

    object-position: 50% 50%;
}


/* ---------------------------------------------------------
   PARMA — GF7
   Verticale editoriale ma senza vecchio min-height.
   --------------------------------------------------------- */

html body .parma-visual.media-frame.has-photo {

    width: 100%;

    height: auto !important;
    min-height: 0 !important;

    aspect-ratio: 4 / 5;
}

html body
.parma-visual.media-frame.has-photo
> .parma-photo {

    object-position: 50% 50%;
}


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

@media (max-width: 900px) {

    html body .hero-visual.media-frame.has-photo {
        aspect-ratio: 5 / 4;
    }

    html body .product-card-large
    .product-photo.media-frame.has-photo,

    html body .product-card
    .product-photo.media-frame.has-photo {

        aspect-ratio: 4 / 3;
    }

    html body .parma-visual.media-frame.has-photo {
        aspect-ratio: 4 / 3;
    }

}


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

@media (max-width: 600px) {

    html body .hero-visual.media-frame.has-photo {
        aspect-ratio: 4 / 5;
    }

    html body .product-card-large
    .product-photo.media-frame.has-photo,

    html body .product-card
    .product-photo.media-frame.has-photo {

        aspect-ratio: 4 / 3;
    }

    html body .parma-visual.media-frame.has-photo {
        aspect-ratio: 4 / 5;
    }

}


/* =========================================================
   OVEN GLUTEN FREE — A8.3B HERO BAKERY PRECISION
   Intervento esclusivamente visuale:
   - hero più equilibrata
   - navigazione più leggibile
   - bollino più distanziato
   - bakery centrale allineata
   ========================================================= */


/* ---------------------------------------------------------
   DESKTOP HERO / HEADER
   --------------------------------------------------------- */

@media (min-width: 901px) {

    /*
     * Più spazio alla copy.
     * La foto perde circa un 10-12% di presenza visiva.
     */
    html body .hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 72px;
    }


    /*
     * Titolo meno grande e meno incolonnato.
     */
    html body .hero h1 {
        max-width: 720px;

        font-size:
            clamp(56px, 5.2vw, 82px);

        line-height: .97;
        letter-spacing: -.045em;
    }


    /*
     * Foto hero appena più piccola.
     * Aspect ratio A8.2 resta invariato.
     */
    html body
    .hero-visual.media-frame.has-photo {

        width: 94%;

        justify-self: end;
    }


    /*
     * Navigazione header più leggibile.
     */
    html body .desktop-nav {
        gap: 38px;
        font-size: 14px;
    }


    html body .desktop-nav a {
        font-weight: 500;
    }


    /*
     * CTA alta "Scopri OVEN".
     */
    html body
    .header-inner > .button.button-small {

        min-height: 50px;

        padding-inline: 26px;

        font-size: 11px;
        letter-spacing: .085em;
    }


    /*
     * CTA hero appena più importante.
     */
    html body
    .hero-actions > .button {

        min-height: 56px;

        padding-inline: 30px;

        font-size: 12.5px;
    }


    html body
    .hero-actions > .text-link {

        font-size: 13px;
    }


    /*
     * Spostiamo fisicamente il bollino verso il basso
     * SENZA sostituire il vecchio transform/rotate.
     *
     * La proprietà "translate" è separata da transform,
     * quindi preserviamo la grafica esistente.
     */
    html body .hero-stamp {
        translate: 0 32px;
    }

}


/* ---------------------------------------------------------
   NON SOLO PIZZA — CARD CENTRALE
   --------------------------------------------------------- */

@media (min-width: 901px) {

    /*
     * Era margin-top: 48px.
     * Ora parte esattamente dalla stessa linea delle laterali.
     */
    html body
    .bakery-card-muffin {

        margin-top: 0;
    }


    /*
     * Era aspect-ratio: 1.
     * .92 la porta alla stessa altezza visuale del Pane.
     */
    html body
    .bakery-card-muffin
    .bakery-photo {

        aspect-ratio: .92;
    }


    /*
     * Crop leggermente centrato sui prodotti.
     */
    html body
    .bakery-card-muffin
    .bakery-photo img {

        object-position: 50% 50%;
    }

}


/* ---------------------------------------------------------
   LONG TITLE SAFETY
   --------------------------------------------------------- */

html body
.bakery-card-muffin h3 {

    max-width: 360px;

    line-height: 1.02;
}


@media (min-width: 901px) and (max-width: 1150px) {

    html body .hero h1 {
        font-size:
            clamp(54px, 6.2vw, 72px);
    }


    html body
    .bakery-card-muffin h3 {

        font-size: 31px;
    }

}


/* =========================================================
   OVEN GLUTEN FREE — A8.4B TYPOGRAPHY BALANCE

   Aumenta esclusivamente testi descrittivi e sottotitoli.
   Titoli, eyebrow, numerazioni, menu e micro-label invariati.
   ========================================================= */


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

html body .hero-lead {
    max-width: 550px;

    font-size: 20px;
    line-height: 1.62;
}


/* ---------------------------------------------------------
   GREEN STATEMENT
   --------------------------------------------------------- */

html body .statement-copy p {
    max-width: 690px;

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


/* ---------------------------------------------------------
   FEATURES — INTRO
   --------------------------------------------------------- */

html body .features-heading > p {
    max-width: 470px;

    font-size: 19px;
    line-height: 1.68;
}


/* ---------------------------------------------------------
   FEATURES — 4 CARD DESCRIPTIONS
   --------------------------------------------------------- */

html body .feature-card p {
    max-width: 285px;

    font-size: 16.5px;
    line-height: 1.68;
}


/* ---------------------------------------------------------
   PIZZA / MATERIA
   --------------------------------------------------------- */

html body .product-copy p {
    max-width: 470px;

    font-size: 16.5px;
    line-height: 1.68;
}


/* ---------------------------------------------------------
   NON SOLO PIZZA — INTRO
   --------------------------------------------------------- */

html body .bakery-heading > p {
    max-width: 460px;

    font-size: 19px;
    line-height: 1.68;
}


/* ---------------------------------------------------------
   PANE / MUFFIN / BISCOTTI
   --------------------------------------------------------- */

html body .bakery-card p {
    max-width: 350px;

    margin-top: 16px;

    font-size: 16.5px;
    line-height: 1.67;
}


/* ---------------------------------------------------------
   VENETIAN / SOLE
   --------------------------------------------------------- */

html body .venetian-inner p {
    max-width: 660px;

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


/* ---------------------------------------------------------
   PARMA
   --------------------------------------------------------- */

html body .parma-copy p {
    max-width: 510px;

    font-size: 19px;
    line-height: 1.68;
}


/* ---------------------------------------------------------
   GALLERY INTRO
   --------------------------------------------------------- */

html body .oven-gallery-heading > p {
    max-width: 440px;

    font-size: 19px;
    line-height: 1.68;
}


/* ---------------------------------------------------------
   FINAL CTA
   --------------------------------------------------------- */

html body .closing p {
    max-width: 610px;

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


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

@media (max-width: 900px) {

    html body .hero-lead {
        font-size: 19px;
    }


    html body .statement-copy p {
        font-size: 17.5px;
    }


    html body .features-heading > p,
    html body .bakery-heading > p,
    html body .venetian-inner p,
    html body .parma-copy p,
    html body .oven-gallery-heading > p {

        font-size: 18px;
    }


    html body .feature-card p,
    html body .product-copy p,
    html body .bakery-card p {

        font-size: 16px;
    }


    html body .closing p {
        font-size: 17.5px;
    }

}


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

@media (max-width: 600px) {

    html body .hero-lead {
        font-size: 18px;
        line-height: 1.65;
    }


    html body .statement-copy p {
        font-size: 17px;
        line-height: 1.72;
    }


    html body .features-heading > p,
    html body .bakery-heading > p,
    html body .venetian-inner p,
    html body .parma-copy p,
    html body .oven-gallery-heading > p {

        font-size: 17.5px;
        line-height: 1.68;
    }


    html body .feature-card p,
    html body .product-copy p,
    html body .bakery-card p {

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


    html body .closing p {
        font-size: 17px;
        line-height: 1.7;
    }

}


/* =========================================================
   OVEN GLUTEN FREE — A8.5D MOBILE FINAL

   SOLO MOBILE:
   1. bollino GF più distante dalla foto hero
   2. spiga Pizza & focaccia rimossa
   3. spiga Materia spostata a destra
   4. sole Venetian ingrandito

   COPY HTML aggiornata globalmente.
   ========================================================= */


@media (max-width: 680px) {


    /* -----------------------------------------------------
       HERO BADGE
       Prima: bottom -54px.
       Ora lo abbassiamo di circa altri 36px.
       ----------------------------------------------------- */

    html body .hero-stamp {

        bottom: -90px !important;

        translate: none !important;
    }


    /*
     * Compensiamo lo spostamento verso il basso
     * mantenendo aria prima della sezione verde.
     */

    html body .statement {

        padding-top: 188px !important;
    }


    /* -----------------------------------------------------
       PIZZA & FOCACCIA
       Prima spiga: SVG exact class="product-wheat".
       ----------------------------------------------------- */

    html body
    .product-card-large.product-card-glow
    > svg.product-wheat:not(.product-wheat-right) {

        display: none !important;
    }


    /* -----------------------------------------------------
       MATERIA PRIMA
       Seconda spiga exact .product-wheat-right.
       ----------------------------------------------------- */

    html body
    .product-card-mist {

        position: relative;
    }


    html body
    .product-card-mist
    > svg.product-wheat.product-wheat-right {

        display: block !important;

        right: 6px !important;
        left: auto !important;

        top: auto !important;
        bottom: 18px !important;

        width: 58px !important;
        height: 58px !important;

        opacity: .42 !important;

        transform: none !important;

        pointer-events: none !important;
    }


    /*
     * Evitiamo che il testo descrittivo arrivi sotto la spiga.
     */

    html body
    .product-card-mist
    .product-copy p {

        padding-right: 58px;
    }


    /*
     * Titolo lungo: proporzione mobile controllata.
     */

    html body
    .product-card-mist
    .product-copy h3 {

        max-width: 100%;

        font-size:
            clamp(35px, 9.6vw, 43px);

        line-height: 1.02;

        letter-spacing: -.025em;
    }


    /* -----------------------------------------------------
       VENETIAN SUN
       Da 128px circa a ~190px mobile.
       ----------------------------------------------------- */

    html body .venetian-sun {

        width: 190px !important;

        max-width: none !important;

        height: auto !important;

        top: 18px !important;

        left: 50% !important;
        right: auto !important;

        transform:
            translateX(-50%) rotate(0deg) !important;

        opacity: .60 !important;
    }


    /*
     * Più spazio verticale per il sole più grande.
     */

    html body .venetian-inner {

        padding-top: 98px !important;
    }

}


/* =========================================================
   OVEN GLUTEN FREE — A8.6B OFFICIAL HEADER LOGO
   ========================================================= */


/* ---------------------------------------------------------
   DESKTOP / TABLET
   --------------------------------------------------------- */

html body .official-logo-link {

    justify-self: end;

    display: flex;

    width:
        clamp(155px, 11.5vw, 178px);

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

    line-height: 0;
}


html body .official-header-logo {

    display: block;

    width: 100%;
    height: auto;

    max-width: none;

    object-fit: contain;

    object-position: center;

    transition:
        transform .25s ease,
        opacity .25s ease;
}


html body
.official-logo-link:hover
.official-header-logo {

    transform: scale(1.025);

    opacity: .88;
}


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

@media (max-width: 900px) {

    html body .official-logo-link {

        width:
            clamp(130px, 20vw, 155px);
    }

}


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

@media (max-width: 560px) {

    html body .official-logo-link {

        width:
            clamp(118px, 33vw, 132px);
    }


    /*
     * Manteniamo OVEN testuale a sinistra e
     * logo ufficiale a destra senza comprimere l'header.
     */

    html body .header-inner {

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

        gap: 18px;
    }

}



/* =========================================================
   OVEN GLUTEN FREE — A8.6E HEADER LOGO RELAYOUT
   ========================================================= */

/* Header: rimuove brand testuale e porta nav + logo a destra */
html body .site-header .brand {
    display: none !important;
}

html body .site-header .header-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
}

/* Nasconde eventuale vecchio CTA header */
html body .site-header .button-small {
    display: none !important;
}

html body .site-header .header-nav-logo {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

html body .site-header .desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
}

html body .site-header .desktop-nav a {
    opacity: .88;
    font-weight: 500;
}

html body .site-header .desktop-nav a:hover {
    opacity: 1;
}

html body .site-header .header-mini-divider {
    display: block;
    width: 1px;
    height: 20px;
    background: rgba(36, 63, 49, .24);
    flex: 0 0 auto;
}

html body .site-header .official-logo-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 1;
}

html body .site-header .official-header-logo {
    display: block;
    width: 152px;
    height: auto;
}

/* mobile: resta pulito, nav nascosta e logo visibile */
@media (max-width: 900px) {

    html body .site-header .header-inner {
        justify-content: flex-end;
    }

    html body .site-header .header-nav-logo {
        margin-left: auto;
        gap: 0;
    }

    html body .site-header .desktop-nav,
    html body .site-header .header-mini-divider {
        display: none !important;
    }

    html body .site-header .official-header-logo {
        width: 128px;
    }
}

@media (max-width: 560px) {

    html body .site-header .official-header-logo {
        width: 118px;
    }
}



/* =========================================================
   OVEN GLUTEN FREE — A8.6G HEADER + PARMA HOURS
   ========================================================= */


/* ---------------------------------------------------------
   HEADER DESKTOP
   Mantiene nav + logo insieme ma sposta il gruppo
   sensibilmente verso sinistra.
   --------------------------------------------------------- */

@media (min-width: 901px) {

    html body
    .site-header
    .header-nav-logo {

        margin-left: auto !important;

        translate:
            clamp(-170px, -9vw, -115px)
            0;

        gap: 26px;
    }


    /*
     * Voci decisamente più leggibili.
     */

    html body
    .site-header
    .desktop-nav {

        gap: 32px;

        font-size: 17px !important;
    }


    html body
    .site-header
    .desktop-nav a {

        font-weight: 500;

        letter-spacing: -.01em;

        opacity: .92;
    }


    /*
     * Piccola linea prima del logo.
     */

    html body
    .site-header
    .header-mini-divider {

        height: 25px;

        opacity: .82;
    }


    html body
    .site-header
    .official-header-logo {

        width: 158px;
    }

}


/* ---------------------------------------------------------
   PARMA — ORARI
   --------------------------------------------------------- */

html body .parma-hours {

    max-width: 500px;

    margin:
        4px 0
        30px;
}


html body .parma-hours-title {

    display: block;

    margin-bottom: 17px;

    color: var(--terracotta);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}


html body .parma-hours-list {

    display: grid;

    gap: 0;

    margin: 0;
    padding: 0;

    list-style: none;

    border-top:
        1px solid
        rgba(36,63,49,.15);
}


html body .parma-hours-list li {

    display: grid;

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

    gap: 22px;

    align-items: baseline;

    padding:
        11px 0;

    border-bottom:
        1px solid
        rgba(36,63,49,.11);

    color:
        var(--brown-soft);

    font-size: 15.5px;

    line-height: 1.45;
}


html body .parma-hours-list strong {

    color: var(--green);

    font-weight: 600;
}


html body .parma-hours-list span {

    text-align: right;
}


/* ---------------------------------------------------------
   TABLET / MOBILE HEADER
   Nessuna traslazione: resta logo pulito.
   --------------------------------------------------------- */

@media (max-width: 900px) {

    html body
    .site-header
    .header-nav-logo {

        translate: none !important;
    }

}


/* ---------------------------------------------------------
   MOBILE ORARI
   --------------------------------------------------------- */

@media (max-width: 600px) {

    html body .parma-hours {

        margin-top: 4px;
        margin-bottom: 28px;
    }


    html body .parma-hours-title {

        margin-bottom: 14px;

        font-size: 11px;
    }


    html body .parma-hours-list li {

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

        gap: 12px;

        padding:
            10px 0;

        font-size: 14.5px;
    }


    html body .parma-hours-list span {

        text-align: right;
    }

}


/* =========================================================
   OVEN GLUTEN FREE — A8.6I HEADER FINAL ALIGNMENT

   Audit A8.6H:
   - elimina margin-left:auto desktop
   - elimina translate della A8.6G
   - posiziona realmente il gruppo verso sinistra
   - separatori tra TUTTE le voci + logo
   ========================================================= */


/* =========================================================
   DESKTOP ONLY
   ========================================================= */

@media (min-width: 901px) {


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

       La vecchia A8.6E usava justify-content:flex-end.
       La neutralizziamo definitivamente.
       ----------------------------------------------------- */

    html body
    .site-header
    .container.header-inner {

        display: flex !important;

        justify-content: flex-start !important;

        align-items: center !important;

        gap: 0 !important;
    }


    /* -----------------------------------------------------
       NAV + LOGO GROUP

       IMPORTANTE:
       non è più ancorato a destra.
       Niente margin-left:auto.
       Niente translate artificiale.

       Parte circa 260–420px dal bordo sinistro
       del container a seconda della viewport.
       ----------------------------------------------------- */

    html body
    .site-header
    .header-nav-logo {

        display: flex !important;

        align-items: center !important;

        margin-left:
            clamp(260px, 28vw, 420px)
            !important;

        margin-right: auto !important;

        translate: none !important;

        transform: none !important;

        gap: 24px !important;
    }


    /* -----------------------------------------------------
       NAV
       ----------------------------------------------------- */

    html body
    .site-header
    .desktop-nav {

        display: flex !important;

        align-items: center !important;

        gap: 0 !important;

        font-size: 18px !important;

        line-height: 1.15;
    }


    html body
    .site-header
    .desktop-nav a {

        position: relative;

        display: inline-flex;

        align-items: center;

        min-height: 28px;

        padding:
            0 22px;

        font-weight: 500 !important;

        letter-spacing: -.012em !important;

        opacity: .94 !important;

        white-space: nowrap;
    }


    /*
     * Prima voce:
     * niente spazio inutile a sinistra.
     */

    html body
    .site-header
    .desktop-nav a:first-child {

        padding-left: 0;
    }


    /*
     * ULTIMA voce:
     * manteniamo spazio prima del divider logo.
     */

    html body
    .site-header
    .desktop-nav a:last-child {

        padding-right: 0;
    }


    /* -----------------------------------------------------
       LINEE TRA LE 3 VOCI

       Esperienza | La proposta | Negozio a Parma
       ----------------------------------------------------- */

    html body
    .site-header
    .desktop-nav a + a {

        border-left:
            1.5px solid
            rgba(36, 56, 44, .42);
    }


    /* -----------------------------------------------------
       LINEA TRA MENU E LOGO

       ... Negozio a Parma | LOGO
       ----------------------------------------------------- */

    html body
    .site-header
    .header-mini-divider {

        display: block !important;

        flex: 0 0 auto !important;

        width: 1.5px !important;

        height: 30px !important;

        margin:
            0 2px !important;

        background:
            rgba(36, 56, 44, .42)
            !important;

        opacity: 1 !important;

        visibility: visible !important;
    }


    /* -----------------------------------------------------
       LOGO
       ----------------------------------------------------- */

    html body
    .site-header
    .official-logo-link {

        display: inline-flex !important;

        flex: 0 0 auto !important;

        align-items: center !important;

        width: 162px !important;

        justify-content: flex-start !important;
    }


    html body
    .site-header
    .official-header-logo {

        display: block !important;

        width: 162px !important;

        height: auto !important;

        max-width: none !important;
    }

}


/* =========================================================
   TABLET / MOBILE
   Nessun cambiamento di impostazione:
   nav e divisori restano nascosti come già previsto.
   ========================================================= */

@media (max-width: 900px) {

    html body
    .site-header
    .header-nav-logo {

        margin-left: auto !important;

        margin-right: 0 !important;

        translate: none !important;
    }


    html body
    .site-header
    .desktop-nav,

    html body
    .site-header
    .header-mini-divider {

        display: none !important;
    }

}


/* =========================================================
   OVEN GLUTEN FREE — A8.6J HEADER TRUE LEFT FIX

   A8.6I aveva:
   margin-left: clamp(260px, 28vw, 420px)

   A 1920px risultava quindi ~420px.
   Ora il gruppo viene realmente portato verso sinistra.
   ========================================================= */

@media (min-width: 901px) {

    html body
    .site-header
    .header-nav-logo {

        margin-left:
            clamp(70px, 7vw, 135px)
            !important;

        margin-right: auto !important;

        translate: none !important;

        transform: none !important;
    }

}


/*
 * Su desktop molto largo evitiamo che il gruppo
 * torni troppo verso il centro.
 */

@media (min-width: 1500px) {

    html body
    .site-header
    .header-nav-logo {

        margin-left: 115px !important;
    }

}


/* =========================================================
   OVEN GLUTEN FREE — A8.6K HEADER ALIGN TO CONTAINER

   Allinea il gruppo menu + logo con il bordo sinistro
   del container/hero.
   ========================================================= */

@media (min-width: 901px) {

    html body
    .site-header
    .header-nav-logo {

        margin-left: 0 !important;

        margin-right: auto !important;

        translate: none !important;

        transform: none !important;
    }

}

/* =========================================================
   OVEN GLUTEN FREE — A8.6L HEADER LOGO LEFT + GREEN MENU
   Logo a sinistra, menu dopo, colore voci verde.
   Solo desktop.
   ========================================================= */

@media (min-width: 901px) {

    html body .site-header .header-nav-logo {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 18px !important;
    }

    html body .site-header .header-nav-logo .official-logo {
        order: 1 !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
    }

    html body .site-header .header-nav-logo .header-mini-divider {
        order: 2 !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
        opacity: .55 !important;
        background: var(--green) !important;
    }

    html body .site-header .header-nav-logo .desktop-nav {
        order: 3 !important;
        display: flex !important;
        align-items: center !important;
        gap: 0 !important;
        margin: 0 !important;
    }

    html body .site-header .header-nav-logo .desktop-nav a {
        color: var(--green) !important;
        opacity: 1 !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        line-height: 1 !important;
    }

    html body .site-header .header-nav-logo .desktop-nav a:hover {
        color: var(--green) !important;
        opacity: 1 !important;
    }

    html body .site-header .header-nav-logo .desktop-nav a + a {
        margin-left: 0 !important;
    }

    html body .site-header .header-nav-logo .desktop-nav a + a::before {
        content: "" !important;
        display: inline-block !important;
        width: 1px !important;
        height: 26px !important;
        margin: 0 22px !important;
        vertical-align: middle !important;
        background: var(--green) !important;
        opacity: .35 !important;
    }
}


/* =========================================================
   OVEN GLUTEN FREE — A8.6N HEADER + MOBILE WHEAT FINAL

   Audit A8.6M2:
   - elimina doppio sistema di separatori
   - logo mobile realmente a sinistra
   - grano statement mobile più grande e visibile
   - statement leggermente più alto su mobile
   ========================================================= */


/* =========================================================
   DESKTOP — UN SOLO SISTEMA DI LINEE
   ========================================================= */

@media (min-width: 901px) {


    /*
     * A8.6I aveva già border-left fra le voci.
     * Teniamo QUELLO.
     *
     * Disattiviamo invece il secondo sistema creato
     * da A8.6L con ::before.
     */

    html body
    .site-header
    .header-nav-logo
    .desktop-nav a + a::before {

        content: none !important;

        display: none !important;

        width: 0 !important;

        height: 0 !important;

        margin: 0 !important;
    }


    /*
     * Una sola linea tra le voci.
     */

    html body
    .site-header
    .desktop-nav a + a {

        border-left:
            1px solid
            rgba(31, 61, 47, .34)
            !important;
    }


    /*
     * Linea logo | menu:
     * utilizziamo esclusivamente
     * header-mini-divider dell'HTML.
     */

    html body
    .site-header
    .header-mini-divider {

        display: block !important;

        width: 1px !important;

        height: 27px !important;

        margin:
            0 5px !important;

        background:
            rgba(31, 61, 47, .34)
            !important;

        opacity: 1 !important;
    }

}


/* =========================================================
   MOBILE — LOGO IN ALTO A SINISTRA
   ========================================================= */

@media (max-width: 900px) {


    /*
     * Neutralizza A8.6E:
     * justify-content:flex-end.
     */

    html body
    .site-header
    .container.header-inner {

        display: flex !important;

        justify-content: flex-start !important;

        align-items: center !important;
    }


    /*
     * Neutralizza A8.6I:
     * margin-left:auto.
     */

    html body
    .site-header
    .header-nav-logo {

        margin-left: 0 !important;

        margin-right: auto !important;

        justify-content: flex-start !important;

        translate: none !important;

        transform: none !important;
    }


    /*
     * Su mobile rimane soltanto il logo.
     */

    html body
    .site-header
    .desktop-nav,

    html body
    .site-header
    .header-mini-divider {

        display: none !important;
    }


    html body
    .site-header
    .official-logo-link {

        margin: 0 !important;

        justify-content: flex-start !important;
    }

}


/* =========================================================
   MOBILE — GREEN STATEMENT / GRANO
   ========================================================= */

@media (max-width: 600px) {


    /*
     * Il box verde aveva bottom padding ~90px.
     * Aggiungiamo solo un po' di respiro.
     */

    html body .statement {

        padding-bottom:
            125px !important;
    }


    /*
     * Audit:
     * width   = 110px
     * opacity = .18
     *
     * Nuovo:
     * width   = 148px
     * opacity = .31
     */

    html body .statement::after {

        right: 4px !important;

        bottom: 24px !important;

        width: 148px !important;

        opacity: .31 !important;

        background-size:
            contain !important;
    }

}


/* =========================================================
   MOBILE MOLTO STRETTO
   ========================================================= */

@media (max-width: 430px) {

    html body .statement {

        padding-bottom:
            120px !important;
    }


    html body .statement::after {

        right: -2px !important;

        bottom: 22px !important;

        width: 140px !important;

        opacity: .30 !important;
    }

}


/* ============================================================
   OVEN GLUTEN FREE — A8.6O MOBILE HERO TIGHTEN + WHEAT POLISH
   - avvicina la hero mobile al logo header
   - riduce il vuoto sopra il contenuto principale
   - sposta le spighe più in basso nel box verde
   - le rende un po' più visibili/chiare
   - desktop invariato
   ============================================================ */

@media (max-width: 900px) {

    html body .hero {
        padding-top: 96px !important;
    }

    html body .hero-grid {
        gap: 28px !important;
    }
}

@media (max-width: 600px) {

    /* Hero mobile più vicina al logo */
    html body .hero {
        padding-top: 74px !important;
        padding-bottom: 52px !important;
    }

    html body .hero-grid {
        gap: 18px !important;
    }

    /* Box verde con più respiro sotto */
    html body .statement {
        padding-bottom: 150px !important;
    }

    /* Spighe più in basso, più staccate dal testo, più visibili */
    html body .statement::after {
        right: 8px !important;
        bottom: 16px !important;
        width: 164px !important;
        opacity: .40 !important;
        background-size: contain !important;
    }
}

@media (max-width: 430px) {

    html body .hero {
        padding-top: 64px !important;
    }

    html body .statement {
        padding-bottom: 156px !important;
    }

    html body .statement::after {
        right: 4px !important;
        bottom: 14px !important;
        width: 156px !important;
        opacity: .43 !important;
    }
}


/* OVEN GLUTEN FREE — A8.8B FEATURE ICON REFRESH */

.feature-icon.feature-icon-png {
    overflow: hidden;
}

.feature-icon.feature-icon-png img {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
    image-rendering: auto;
}

.feature-card-02 {
    background: linear-gradient(
        180deg,
        #f4eadc 0%,
        #efe2d2 100%
    );
}

.feature-card-03 {
    background: #fbf8f2;
}

.feature-card-04 .feature-icon.feature-icon-png img {
    width: 56px;
    height: 56px;
}

@media (max-width: 900px) {
    .feature-icon.feature-icon-png img {
        width: 58px;
        height: 58px;
    }

    .feature-card-04 .feature-icon.feature-icon-png img {
        width: 60px;
        height: 60px;
    }
}



/* ============================================================
   OVEN GLUTEN FREE — A8.8C-R1 FEATURE ICON FINAL POLISH

   - dimensionamento PNG autoritativo
   - nessuna deformazione
   - tre card chiare realmente distinte
   - card verde preservata
   ============================================================ */


/* ------------------------------------------------------------
   FEATURE ICON HOLDER
   ------------------------------------------------------------ */

html body .features .feature-card .feature-icon {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 92px !important;

    height: 92px !important;

    min-width: 92px !important;

    min-height: 92px !important;

    max-width: 92px !important;

    max-height: 92px !important;

    padding: 0 !important;

    overflow: hidden !important;

    border-radius: 24px !important;

    box-sizing: border-box !important;
}


/* ------------------------------------------------------------
   PNG — FERMA QUALUNQUE WIDTH/HEIGHT HTML O CSS PRECEDENTE
   ------------------------------------------------------------ */

html body
.features
.feature-card
.feature-icon
img {

    display: block !important;

    position: static !important;

    width: 60px !important;

    height: 60px !important;

    min-width: 0 !important;

    min-height: 0 !important;

    max-width: 60px !important;

    max-height: 60px !important;

    margin: 0 !important;

    padding: 0 !important;

    object-fit: contain !important;

    object-position: center center !important;

    aspect-ratio: 1 / 1 !important;

    transform: none !important;

    scale: 1 !important;
}


/* piccoli compensi ottici */

html body
.features
.feature-card-01
.feature-icon
img {

    width: 61px !important;
    height: 61px !important;

    max-width: 61px !important;
    max-height: 61px !important;
}


html body
.features
.feature-card-02
.feature-icon
img {

    width: 58px !important;
    height: 58px !important;

    max-width: 58px !important;
    max-height: 58px !important;
}


html body
.features
.feature-card-03
.feature-icon
img {

    width: 59px !important;
    height: 59px !important;

    max-width: 59px !important;
    max-height: 59px !important;
}


html body
.features
.feature-card-04
.feature-icon
img {

    width: 58px !important;
    height: 58px !important;

    max-width: 58px !important;
    max-height: 58px !important;
}


/* ------------------------------------------------------------
   CARD 01 — AVORIO CALDO
   ------------------------------------------------------------ */

html body
.features
.feature-card-01 {

    --card-bg: #fbf5ea !important;

    background:
        #fbf5ea !important;

    background-image:
        none !important;

    border-color:
        rgba(86,70,52,.08) !important;
}


html body
.features
.feature-card-01
.feature-icon {

    background:
        #efe2cb !important;
}


/* ------------------------------------------------------------
   CARD 02 — BEIGE / PESCA CALDO
   ------------------------------------------------------------ */

html body
.features
.feature-card-02 {

    --card-bg: #f1dfcd !important;

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

    border-color:
        rgba(131,87,55,.10) !important;
}


html body
.features
.feature-card-02
.feature-icon {

    background:
        #e9d3b8 !important;
}


/* ------------------------------------------------------------
   CARD 03 — SALVIA CHIARISSIMA
   ------------------------------------------------------------ */

html body
.features
.feature-card-03 {

    --card-bg: #e8eee2 !important;

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

    border-color:
        rgba(54,86,65,.10) !important;
}


html body
.features
.feature-card-03
.feature-icon {

    background:
        #dde5d2 !important;
}


/* ------------------------------------------------------------
   CARD 04 — VERDE OVEN INVARIATO
   ------------------------------------------------------------ */

html body
.features
.feature-card-04 {

    background:
        linear-gradient(
            145deg,
            #315542 0%,
            #284938 100%
        ) !important;
}


html body
.features
.feature-card-04
.feature-icon {

    background:
        rgba(243,233,215,.11) !important;
}


/* ------------------------------------------------------------
   HOVER — non deformare PNG
   ------------------------------------------------------------ */

html body
.features
.feature-card:hover
.feature-icon {

    transform:
        translateY(-2px)
        scale(1.015) !important;
}


html body
.features
.feature-card:hover
.feature-icon
img {

    transform:
        none !important;
}


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

@media (max-width: 600px) {

    html body
    .features
    .feature-card
    .feature-icon {

        width: 82px !important;

        height: 82px !important;

        min-width: 82px !important;

        min-height: 82px !important;

        max-width: 82px !important;

        max-height: 82px !important;

        border-radius:
            21px !important;
    }


    html body
    .features
    .feature-card
    .feature-icon
    img {

        width: 52px !important;

        height: 52px !important;

        max-width: 52px !important;

        max-height: 52px !important;
    }


    html body
    .features
    .feature-card-02
    .feature-icon
    img {

        width: 49px !important;

        height: 49px !important;

        max-width: 49px !important;

        max-height: 49px !important;
    }


    html body
    .features
    .feature-card-04
    .feature-icon
    img {

        width: 50px !important;

        height: 50px !important;

        max-width: 50px !important;

        max-height: 50px !important;
    }

}

