/* =========================================================
   CARÒSSA — Design system
   Palette piatta, tipografia calda, illustrazioni a tratto.
   Nessun gradiente, nessun effetto 3D.
   ========================================================= */

:root {
    --verde-bosco: #2E4034;
    --verde-bosco-deep: #202E26;
    --terracotta: #D98F4E;
    --terracotta-dark: #BD7538;
    --rosa-argilla: #E4B7A0;
    --salvia: #6B8E7B;
    --panna: #F4EEE2;
    --sabbia: #EFE6D4;
    --inchiostro: #23291F;
    --talpa: #5C5648;
    --bianco-carta: #FBF8F1;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Karla', -apple-system, sans-serif;
    --font-hand: 'Caveat', cursive;

    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;

    --shadow-flat: 6px 6px 0 rgba(35, 41, 31, 0.14);
    --shadow-flat-sm: 4px 4px 0 rgba(35, 41, 31, 0.12);
    --shadow-flat-lg: 10px 10px 0 rgba(35, 41, 31, 0.16);

    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --wrap-width: 1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd {
    margin: 0;
}
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

body {
    background: var(--panna);
    color: var(--inchiostro);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

/* Grana carta leggera sull'intero body */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.05;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Cursore custom */
.cursor-dot {
    position: fixed;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--terracotta);
    pointer-events: none;
    z-index: 1000;
    transform: translate(-50%, -50%);
    transition: transform .15s var(--ease-out), opacity .2s ease;
    opacity: 0;
    display: none;
}
@media (hover: hover) and (pointer: fine) {
    .cursor-dot { display: block; }
}

.wrap {
    max-width: var(--wrap-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--inchiostro);
    line-height: 1.12;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

em, .italic { font-style: italic; }

.eyebrow {
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: var(--terracotta-dark);
    display: inline-block;
    transform: rotate(-2deg);
    margin-bottom: 4px;
}

.section-head {
    max-width: 640px;
    margin-bottom: 56px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--talpa); font-size: 1.08rem; margin-top: 14px; }

.underline-squiggle {
    position: relative;
    white-space: nowrap;
}
.underline-squiggle::after {
    content: '';
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: -6px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0 6 Q 8 0, 16 6 T 32 6 T 48 6 T 64 6 T 80 6 T 100 6' fill='none' stroke='%23D98F4E' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 44px 10px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 30px;
    border-radius: 100px;
    border: 2px solid transparent;
    transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background-color .2s ease, color .2s ease;
    white-space: nowrap;
}
.btn--primary {
    background: var(--terracotta);
    color: var(--bianco-carta);
    box-shadow: var(--shadow-flat-sm);
}
.btn--primary:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0 rgba(35, 41, 31, 0.18);
    background: var(--terracotta-dark);
}
.btn--outline {
    background: transparent;
    color: var(--panna);
    border-color: currentColor;
}
.btn--outline:hover {
    background: rgba(244, 238, 226, 0.12);
    transform: translate(-3px, -3px);
}
.btn--outline-dark {
    background: transparent;
    color: var(--verde-bosco);
    border-color: var(--verde-bosco);
}
.btn--outline-dark:hover {
    background: var(--verde-bosco);
    color: var(--panna);
    transform: translate(-3px, -3px);
}
.btn--small { padding: 11px 22px; font-size: 0.92rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(244, 238, 226, 0.92);
    backdrop-filter: blur(6px);
    border-bottom: 2px solid var(--inchiostro);
}
.site-header__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 16px;
    padding-bottom: 16px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
}
.brand__word {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
    font-style: italic;
}
.main-nav__list {
    display: flex;
    gap: 8px;
}
.nav-link {
    font-weight: 700;
    font-size: 0.96rem;
    padding: 8px 14px;
    border-radius: 100px;
    position: relative;
    transition: background-color .2s ease, color .2s ease;
}
.nav-link:hover { background: var(--sabbia); }
.nav-link.is-active { background: var(--verde-bosco); color: var(--panna); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--inchiostro);
    border-radius: 2px;
    transition: transform .25s var(--ease-out), opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease-out);
    border-top: 2px solid var(--inchiostro);
}
.mobile-nav.is-open { max-height: 400px; }
.mobile-nav__list { padding: 12px 32px 20px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__list a { display: block; padding: 12px 8px; font-weight: 700; border-radius: 10px; }
.mobile-nav__list a.is-active { background: var(--verde-bosco); color: var(--panna); }

/* ---------- Hero ---------- */
.hero {
    background: var(--verde-bosco);
    color: var(--panna);
    position: relative;
    overflow: hidden;
    padding: 88px 0 110px;
}
.hero::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -160px;
    width: 520px;
    height: 520px;
    border-radius: 44% 56% 61% 39% / 45% 40% 60% 55%;
    background: var(--terracotta);
    opacity: 0.9;
    animation: blobFloat 12s ease-in-out infinite;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -140px;
    width: 380px;
    height: 380px;
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    background: var(--salvia);
    opacity: 0.35;
    animation: blobFloat 15s ease-in-out infinite reverse;
}
.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
.hero__copy .eyebrow { color: var(--rosa-argilla); }
.hero h1 { color: var(--panna); }
.hero h1 .accent { color: var(--terracotta); font-style: italic; }
.hero__sub {
    font-size: 1.2rem;
    color: var(--sabbia);
    max-width: 480px;
    margin: 22px 0 34px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; }
.hero__note {
    position: absolute;
    font-family: var(--font-hand);
    font-size: 1.4rem;
    color: var(--panna);
}
.hero__note--1 { top: 4%; left: -6%; transform: rotate(-6deg); }
.hero__note--2 { bottom: 10%; right: -4%; transform: rotate(4deg); }

.hero__floater {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--panna);
    color: var(--verde-bosco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-flat-sm);
    animation: floatY 6s ease-in-out infinite;
    z-index: 3;
}
.hero__floater--1 { top: 6%; right: 14%; animation-delay: .2s; }
.hero__floater--2 { top: 44%; left: -4%; animation-delay: 1.1s; background: var(--rosa-argilla); }
.hero__floater--3 { bottom: 4%; right: 4%; animation-delay: .6s; background: var(--salvia); color: var(--panna); }
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(-16px, 22px) rotate(8deg) scale(1.04); }
    66% { transform: translate(14px, -14px) rotate(-6deg) scale(0.97); }
}

/* ---------- Sections generiche ---------- */
section { padding: 100px 0; position: relative; }
.section--alt { background: var(--sabbia); }
.section--dark { background: var(--verde-bosco); color: var(--panna); }
.section--dark .section-head p { color: var(--rosa-argilla); }

/* ---------- Category / feature cards ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.tilt-card {
    background: var(--bianco-carta);
    border: 2px solid var(--inchiostro);
    border-radius: var(--radius-md);
    padding: 34px 28px;
    box-shadow: var(--shadow-flat);
    transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.tilt-card:nth-child(3n+1) { transform: rotate(-2deg); }
.tilt-card:nth-child(3n+2) { transform: rotate(1.4deg); }
.tilt-card:nth-child(3n+3) { transform: rotate(-1deg); }
.tilt-card:hover {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: var(--shadow-flat-lg);
    border-color: var(--terracotta);
}
.tilt-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--sabbia);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--verde-bosco);
    margin-bottom: 20px;
}
.tilt-card h3 { margin-bottom: 10px; }
.tilt-card p { color: var(--talpa); font-size: 0.98rem; }

/* ---------- Perché Caròssa (feature list) ---------- */
.feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.feature-item { text-align: left; }
.feature-item__num {
    font-family: var(--font-hand);
    font-size: 2.4rem;
    color: var(--terracotta);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}
.feature-item h3 { margin-bottom: 8px; }
.feature-item p { color: var(--talpa); font-size: 0.98rem; }

/* ---------- Product cards ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.product-grid--catalog {
    grid-template-columns: repeat(3, 1fr);
}
.product-card {
    background: var(--bianco-carta);
    border: 2px solid var(--inchiostro);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-flat-sm);
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-flat);
}
.product-card__media {
    aspect-ratio: 4 / 3;
    background: var(--sabbia);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}
.product-card__media svg { width: 100%; height: 100%; }
.product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--terracotta);
    color: var(--bianco-carta);
    font-family: var(--font-hand);
    font-size: 1.05rem;
    padding: 3px 14px 5px;
    border-radius: 100px;
    transform: rotate(-4deg);
    box-shadow: var(--shadow-flat-sm);
}
.product-card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.product-card__body h3 { margin-bottom: 6px; font-size: 1.15rem; }
.product-card__body p { color: var(--talpa); font-size: 0.94rem; margin-bottom: 6px; }
.product-card__material { font-size: 0.82rem; color: var(--salvia); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.product-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px dashed var(--talpa);
}
.product-card__price { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.product-card__link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--verde-bosco);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.product-card__link:hover { color: var(--terracotta-dark); }

/* ---------- Filtri catalogo ---------- */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}
.filter-chip {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 100px;
    border: 2px solid var(--inchiostro);
    background: var(--bianco-carta);
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.filter-chip:hover { transform: translateY(-2px); }
.filter-chip.is-active { background: var(--verde-bosco); color: var(--panna); border-color: var(--verde-bosco); }
.product-card.is-hidden { display: none; }

/* ---------- Process steps ---------- */
.step-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}
.step-row--4 { grid-template-columns: repeat(4, 1fr); }
.step {
    text-align: center;
    position: relative;
}
.step__num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--bianco-carta);
    font-family: var(--font-hand);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-flat-sm);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--talpa); font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.testimonial-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial {
    background: var(--rosa-argilla);
    border-radius: 44% 56% 52% 48% / 52% 46% 54% 48%;
    padding: 46px 38px;
    position: relative;
}
.testimonial:nth-child(2) { margin-top: 34px; }
.testimonial blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.12rem;
    line-height: 1.5;
    color: var(--inchiostro);
    margin-bottom: 18px;
}
.testimonial cite {
    font-style: normal;
    font-weight: 700;
    display: block;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--verde-bosco-deep);
}
.testimonial cite span { display: block; font-weight: 400; color: var(--talpa); }

/* ---------- About / two-col ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__text p { margin-bottom: 18px; color: var(--talpa); }
.split__media svg { width: 100%; height: auto; }

/* ---------- Values ---------- */
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.value-card {
    padding: 30px 24px;
    border: 2px dashed var(--verde-bosco);
    border-radius: var(--radius-md);
}
.value-card i { font-size: 1.7rem; color: var(--terracotta); margin-bottom: 14px; display: block; }
.value-card p { color: var(--talpa); font-size: 0.94rem; margin-top: 8px; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 6px;
    bottom: 6px;
    width: 3px;
    background-image: linear-gradient(var(--verde-bosco) 60%, transparent 0%);
    background-size: 3px 14px;
    background-repeat: repeat-y;
}
.timeline-item { position: relative; padding-bottom: 46px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--terracotta);
    border: 3px solid var(--panna);
    box-shadow: 0 0 0 2px var(--verde-bosco);
}
.timeline-item__year { font-family: var(--font-hand); font-size: 1.6rem; color: var(--terracotta-dark); }
.timeline-item h3 { margin: 4px 0 8px; }
.timeline-item p { color: var(--talpa); }

/* ---------- Team ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-card { text-align: center; }
.team-card__portrait {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--sabbia);
    margin: 0 auto 18px;
    border: 3px solid var(--inchiostro);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card__portrait svg { width: 100%; height: 100%; }
.team-card h3 { margin-bottom: 2px; }
.team-card span { color: var(--terracotta-dark); font-weight: 700; font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; }
.faq-item {
    border-bottom: 2px solid var(--inchiostro);
}
.faq-item:first-child { border-top: 2px solid var(--inchiostro); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 4px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
    gap: 20px;
}
.faq-question i { flex-shrink: 0; font-size: 1.4rem; color: var(--terracotta); transition: transform .3s var(--ease-out); }
.faq-item.is-open .faq-question i { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease-out);
}
.faq-answer p { padding: 0 4px 24px; color: var(--talpa); max-width: 640px; }

/* ---------- Forms ---------- */
.form-card {
    background: var(--bianco-carta);
    border: 2px solid var(--inchiostro);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-flat-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; }
.field label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--verde-bosco-deep);
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--talpa);
    border-radius: var(--radius-sm);
    background: var(--panna);
    font-size: 0.98rem;
    transition: border-color .2s ease, background-color .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    background: var(--bianco-carta);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--talpa);
    margin-bottom: 26px;
}
.field-check input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.field-check a { color: var(--verde-bosco); font-weight: 700; text-decoration: underline; }

.form-feedback {
    display: none;
    margin-top: -6px;
    margin-bottom: 22px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: var(--salvia);
    color: var(--bianco-carta);
    font-weight: 700;
    font-size: 0.92rem;
}
.form-feedback.is-visible { display: block; }
.form-feedback.is-error { background: var(--terracotta-dark); }

.contact-info-list { display: flex; flex-direction: column; gap: 22px; }
.contact-info-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-list i { font-size: 1.5rem; color: var(--terracotta); margin-top: 3px; }
.contact-info-list strong { display: block; margin-bottom: 3px; }
.contact-info-list span, .contact-info-list a { color: var(--talpa); }

/* ---------- Legal pages ---------- */
.legal-content { max-width: 780px; }
.legal-content h2 { margin-top: 44px; margin-bottom: 16px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--talpa); margin-bottom: 16px; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-content li { color: var(--talpa); margin-bottom: 8px; }
.legal-meta {
    background: var(--sabbia);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 40px;
    font-size: 0.94rem;
}
.legal-meta strong { color: var(--verde-bosco-deep); }

/* ---------- CTA band ---------- */
.cta-band {
    background: var(--verde-bosco);
    color: var(--panna);
    border-radius: var(--radius-lg);
    padding: 64px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    background: var(--salvia);
    opacity: 0.35;
}
.cta-band h2 { color: var(--panna); max-width: 480px; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

/* ---------- Map illustration ---------- */
.map-block {
    background: var(--sabbia);
    border: 2px solid var(--inchiostro);
    border-radius: var(--radius-lg);
    padding: 20px;
}
.map-block svg { width: 100%; height: auto; }

/* ---------- Reveal animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .55s; }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

.hero__copy > * { opacity: 0; transform: translateY(20px); animation: heroIn .8s var(--ease-out) forwards; }
.hero__copy .eyebrow { animation-delay: .05s; }
.hero__copy h1 { animation-delay: .15s; }
.hero__copy .hero__sub { animation-delay: .28s; }
.hero__copy .hero__actions { animation-delay: .4s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--verde-bosco);
    color: var(--sabbia);
    padding: 80px 0 28px;
    position: relative;
    overflow: hidden;
}
.footer-blob {
    position: absolute;
    top: -120px;
    left: 40%;
    width: 360px;
    height: 360px;
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    background: var(--salvia);
    opacity: 0.18;
}
.site-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    padding-bottom: 56px;
}
.brand--footer .brand__word { color: var(--panna); }
.footer-tagline { margin-top: 16px; color: var(--sabbia); font-size: 0.94rem; max-width: 260px; }
.footer-heading {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rosa-argilla);
    margin-bottom: 18px;
}
.footer-list { display: flex; flex-direction: column; gap: 11px; font-size: 0.94rem; }
.footer-list a:hover { color: var(--terracotta); }
.footer-list li { display: flex; gap: 8px; align-items: flex-start; }
.site-footer__bottom {
    border-top: 1px solid rgba(244, 238, 226, 0.18);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--sabbia);
    position: relative;
    z-index: 1;
}
.footer-signature { font-family: var(--font-hand); font-size: 1.1rem; color: var(--rosa-argilla); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
    .wrap { padding: 0 26px; }
    .hero__inner { gap: 32px; }
    .card-grid--4, .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    section { padding: 76px 0; }
    .main-nav, .header-cta { display: none; }
    .nav-toggle { display: flex; }
    .mobile-nav { display: block; }
    .hero__inner { grid-template-columns: 1fr; }
    .hero__art { max-width: 420px; margin: 0 auto; order: -1; }
    .card-grid, .card-grid--4, .feature-row, .value-grid, .step-row, .step-row--4,
    .testimonial-row, .team-grid, .product-grid--catalog {
        grid-template-columns: repeat(2, 1fr);
    }
    .split, .split--reverse { grid-template-columns: 1fr; }
    .split--reverse .split__media { order: 0; }
    .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    body { font-size: 16px; }
    .form-row { grid-template-columns: 1fr; }
    .tilt-card { transform: none !important; }
    .testimonial:nth-child(2) { margin-top: 0; }
    .cta-band { flex-direction: column; text-align: center; padding: 48px 32px; }
    .cta-band h2 { max-width: none; }
}

@media (max-width: 576px) {
    .wrap { padding: 0 20px; }
    section { padding: 60px 0; }
    .card-grid, .card-grid--4, .feature-row, .value-grid, .step-row, .step-row--4,
    .testimonial-row, .team-grid, .product-grid, .product-grid--catalog,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }
    .form-card { padding: 30px 22px; }
    .cta-band { padding: 40px 24px; }
    .site-footer__bottom { flex-direction: column; }
}
