/* dillo — Home CSS
 * File auto-contenuto: tokens + base + componenti + pagina.
 * Tutte le regole pagina sono scoped sotto body.sitiamo-page--home.
 */

/* ================================================================
   KEYFRAMES — bubble hero (globali, non scoped)
   ================================================================ */
/* Bubble: box-shadow espande il bordo coral — il testo non si muove */
@keyframes dillo-bubble-breathe {
    0%, 100% { box-shadow: 0 0 0 0px var(--coral-500); }
    50%       { box-shadow: 0 0 0 2px var(--coral-500); }
}

/* Trattini: scaleX con rotazione baked-in, stagger via animation-delay */
@keyframes dillo-dash-top {
    0%, 100% { transform: rotate(-28deg) scaleX(0.5); }
    50%       { transform: rotate(-28deg) scaleX(1.3); }
}
@keyframes dillo-dash-mid {
    0%, 100% { transform: scaleX(0.5); }
    50%       { transform: scaleX(1.3); }
}
@keyframes dillo-dash-bot {
    0%, 100% { transform: rotate(28deg)  scaleX(0.5); }
    50%       { transform: rotate(28deg)  scaleX(1.3); }
}

/* ================================================================
   FONTS
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Hanken+Grotesk:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ================================================================
   DESIGN TOKENS
   ================================================================ */
:root {
    /* Cream / neutrals */
    --cream-50:  #FCFAF6;
    --cream-100: #F6F2EB;
    --cream-200: #EFE9DE;
    --cream-300: #E4DCCD;
    --cream-400: #D2C7B4;
    --white:     #FFFFFF;

    /* Ink */
    --ink-900: #211C1A;
    --ink-700: #463F3A;
    --ink-500: #6B625B;
    --ink-400: #8A817A;
    --ink-300: #B4ACA3;

    /* Coral */
    --coral-50:  #FDECEB;
    --coral-100: #FBD9D8;
    --coral-200: #F7B6B5;
    --coral-300: #F4A09F;
    --coral-500: #F08988;
    --coral-600: #E5706F;
    --coral-700: #D25857;

    /* Mint */
    --mint-50:  #EEF6F1;
    --mint-100: #DCEDE4;
    --mint-200: #C9E3D6;
    --mint-300: #BADBCC;
    --mint-500: #9AC7B3;
    --mint-600: #79AE97;
    --mint-700: #5C9079;

    /* Semantic */
    --bg-page:        var(--cream-100);
    --bg-raised:      var(--white);
    --bg-sunken:      var(--cream-200);
    --text-strong:    var(--ink-900);
    --text-body:      var(--ink-700);
    --text-muted:     var(--ink-500);
    --text-subtle:    var(--ink-400);
    --text-brand:     var(--coral-500);
    --border-subtle:  var(--cream-300);
    --border-default: var(--cream-400);
    --action-primary:       var(--coral-500);
    --action-primary-hover: var(--coral-600);
    --action-secondary:     var(--mint-300);

    /* Typography */
    --font-display: 'Fredoka', 'Arial Rounded MT Bold', system-ui, sans-serif;
    --font-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
    --fw-regular: 400;
    --fw-medium:  500;
    --fw-semibold:600;
    --fw-bold:    700;
    --fw-extra:   800;
    --text-2xs:  0.6875rem;
    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-md:   1.125rem;
    --text-lg:   1.375rem;
    --text-xl:   1.75rem;
    --text-2xl:  2.25rem;
    --text-3xl:  3rem;
    --tracking-tight: -0.02em;
    --tracking-caps:   0.08em;
    --tracking-wide:   0.04em;
    --leading-tight:  1.05;
    --leading-snug:   1.18;
    --leading-normal: 1.4;

    /* Spacing & shape */
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --radius-xs:  6px;
    --radius-sm:  10px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;
    --radius-2xl: 44px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(33,28,26,0.06);
    --shadow-sm: 0 2px 6px rgba(33,28,26,0.07);
    --shadow-md: 0 6px 18px rgba(33,28,26,0.08);
    --shadow-lg: 0 16px 38px rgba(33,28,26,0.10);
    --shadow-coral: 0 10px 26px rgba(240,137,136,0.30);
    --shadow-mint:  0 10px 26px rgba(154,199,179,0.30);

    /* Motion */
    --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
    --dur-fast: 120ms;
    --dur-base: 200ms;
}

/* ================================================================
   BASE RESET (globale)
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
img { max-width: 100%; display: block; }
::selection { background: var(--coral-200); color: var(--ink-900); }

/* Utility globale */
.dillo-eyebrow {
    font-family: var(--font-body);
    font-weight: var(--fw-bold);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-caps);
    text-transform: uppercase;
    color: var(--text-brand);
    display: block;
}
.dillo-statement {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    letter-spacing: var(--tracking-tight);
    line-height: var(--leading-tight);
    color: var(--text-strong);
    text-transform: lowercase;
}

/* ================================================================
   LAYOUT — body
   ================================================================ */
body.sitiamo-page--home {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--text-body);
    background: var(--bg-page);
    -webkit-font-smoothing: antialiased;
}

body.sitiamo-page--home h1,
body.sitiamo-page--home h2,
body.sitiamo-page--home h3,
body.sitiamo-page--home h4 {
    font-family: var(--font-display);
    color: var(--text-strong);
    font-weight: var(--fw-semibold);
    line-height: var(--leading-snug);
    letter-spacing: var(--tracking-tight);
    margin: 0;
}

body.sitiamo-page--home p { margin: 0; }
body.sitiamo-page--home a { color: var(--text-brand); text-decoration: none; }
body.sitiamo-page--home a:hover { text-decoration: underline; }

/* Container */
body.sitiamo-page--home .dh-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ================================================================
   COMPONENTI — Buttons
   ================================================================ */
body.sitiamo-page--home .dh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--tracking-tight);
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: transform var(--dur-fast) var(--ease-out), filter var(--dur-fast) var(--ease-out);
    padding: 11px 22px;
    font-size: var(--text-base);
    min-height: 44px;
    line-height: 1;
}
body.sitiamo-page--home .dh-btn:hover { filter: brightness(0.94); text-decoration: none; }
body.sitiamo-page--home .dh-btn:active { transform: scale(0.96); }

body.sitiamo-page--home .dh-btn--sm  { padding: 8px 16px; font-size: var(--text-sm); min-height: 36px; }
body.sitiamo-page--home .dh-btn--lg  { padding: 15px 30px; font-size: var(--text-md); min-height: 54px; }

body.sitiamo-page--home .dh-btn--primary   { background: var(--action-primary); color: #fff; box-shadow: var(--shadow-coral); }
body.sitiamo-page--home .dh-btn--secondary { background: var(--action-secondary); color: var(--ink-900); box-shadow: var(--shadow-sm); }
body.sitiamo-page--home .dh-btn--outline {
    background: transparent;
    color: var(--text-strong);
    box-shadow: inset 0 0 0 2px var(--ink-900);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
body.sitiamo-page--home .dh-btn--outline-white {
    background: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.7);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
/* onda "lead" — sale leggermente in anticipo */
body.sitiamo-page--home .dh-btn--outline::before,
body.sitiamo-page--home .dh-btn--outline-white::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 105%;
    width: 140%;
    height: 180%;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    transition: all 0.5s 0.05s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}
/* onda piena bianca — segue l'onda lead */
body.sitiamo-page--home .dh-btn--outline::after,
body.sitiamo-page--home .dh-btn--outline-white::after {
    content: '';
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 185%;
    width: 160%;
    height: 190%;
    background: #fff;
    border-radius: 50%;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}
body.sitiamo-page--home .dh-btn--outline:hover::before,
body.sitiamo-page--home .dh-btn--outline-white:hover::before {
    top: -35%;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
body.sitiamo-page--home .dh-btn--outline:hover::after,
body.sitiamo-page--home .dh-btn--outline-white:hover::after {
    top: -45%;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
body.sitiamo-page--home .dh-btn--outline:hover       { filter: none; outline: 2px solid var(--ink-900); outline-offset: -2px; }
body.sitiamo-page--home .dh-btn--outline-white:hover { filter: none; color: var(--text-strong); }

/* Icone Lucide dentro i bottoni */
body.sitiamo-page--home .dh-btn i[data-lucide] { width: 1em; height: 1em; flex-shrink: 0; }
body.sitiamo-page--home .dh-btn--sm  i[data-lucide] { width: 15px; height: 15px; }
body.sitiamo-page--home .dh-btn--lg  i[data-lucide] { width: 20px; height: 20px; }

/* ================================================================
   COMPONENTI — Cards
   ================================================================ */
body.sitiamo-page--home .dh-card {
    background: var(--bg-raised);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-5);
    transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
body.sitiamo-page--home .dh-card--interactive { cursor: pointer; }
body.sitiamo-page--home .dh-card--interactive:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
body.sitiamo-page--home .dh-card--no-pad { padding: 0; }

/* ================================================================
   COMPONENTI — Badges
   ================================================================ */
body.sitiamo-page--home .dh-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-weight: var(--fw-bold);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wide);
    line-height: 1;
    padding: 5px 11px;
    border-radius: var(--radius-pill);
}
body.sitiamo-page--home .dh-badge--coral   { background: var(--coral-50);  color: var(--coral-700); }
body.sitiamo-page--home .dh-badge--mint    { background: var(--mint-50);   color: var(--mint-700); }
body.sitiamo-page--home .dh-badge--solid   { background: var(--coral-500); color: #fff; }
body.sitiamo-page--home .dh-badge--dark    { background: var(--ink-900);   color: var(--cream-50); }
body.sitiamo-page--home .dh-badge--neutral { background: var(--cream-200); color: var(--ink-700); }

/* ================================================================
   COMPONENTI — Glovo Tag
   ================================================================ */
body.sitiamo-page--home .dh-glovo-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #FFC244;
    color: #143C25;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    padding: 4px 11px;
    border-radius: var(--radius-pill);
    letter-spacing: -0.01em;
    line-height: 1;
}
body.sitiamo-page--home .dh-glovo-tag i[data-lucide] { width: 16px; height: 16px; }

/* ================================================================
   COMPONENTI — Avatar
   ================================================================ */
body.sitiamo-page--home .dh-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-body);
    font-weight: var(--fw-bold);
    font-size: var(--text-xs);
    color: var(--ink-900);
    flex-shrink: 0;
    border: 2px solid var(--bg-page);
}
body.sitiamo-page--home .dh-avatar--sm { width: 32px; height: 32px; font-size: 10px; }

/* ================================================================
   COMPONENTI — Bubble (speech bubble)
   ================================================================ */
body.sitiamo-page--home .dh-bubble {
    position: relative;
    display: inline-block;
    font-family: var(--font-display);
    font-weight: var(--fw-medium);
    font-size: var(--text-md);
    line-height: var(--leading-snug);
    padding: 16px 22px;
    border-radius: var(--radius-lg);
}
body.sitiamo-page--home .dh-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 26px;
    width: 22px;
    height: 22px;
    border-radius: 0 0 14px 0;
}
body.sitiamo-page--home .dh-bubble--coral { background: var(--coral-500); color: #fff; }
body.sitiamo-page--home .dh-bubble--coral::after { background: var(--coral-500); }

body.sitiamo-page--home .dh-bubble--dashes::before {
    content: '';
    position: absolute;
    left: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 5px;
    background: var(--mint-500);
    border-radius: 3px;
    transform-origin: left center;
    box-shadow: 0 -10px 0 var(--mint-500), 0 10px 0 var(--mint-500);
}

/* Bubble hero — respiro + trattini parlanti */
body.sitiamo-page--home .dh-hero__bubble-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
body.sitiamo-page--home .dh-hero__bubble {
    white-space: nowrap;
    flex-shrink: 0;
    animation: dillo-bubble-breathe 2.6s ease-in-out infinite;
}
body.sitiamo-page--home .dh-hero__dashes {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
body.sitiamo-page--home .dh-hero__dashes span {
    display: block;
    height: 5px;
    border-radius: 3px;
    background: var(--mint-500);
    transform-origin: left center;
}
body.sitiamo-page--home .dh-hero__dashes span:nth-child(1) {
    width: 14px;
    animation: dillo-dash-top 1.8s ease-in-out infinite;
}
body.sitiamo-page--home .dh-hero__dashes span:nth-child(2) {
    width: 16px;
    animation: dillo-dash-mid 1.8s ease-in-out infinite 0.18s;
}
body.sitiamo-page--home .dh-hero__dashes span:nth-child(3) {
    width: 14px;
    animation: dillo-dash-bot 1.8s ease-in-out infinite 0.36s;
}
@media (prefers-reduced-motion: reduce) {
    body.sitiamo-page--home .dh-hero__bubble,
    body.sitiamo-page--home .dh-hero__dashes span {
        animation: none;
    }
}

/* ================================================================
   UTILITY
   ================================================================ */
body.sitiamo-page--home .dh-price {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: var(--text-lg);
}
body.sitiamo-page--home .dh-link-arrow {
    font-weight: var(--fw-bold);
    color: var(--text-body);
    cursor: pointer;
    text-decoration: none;
}
body.sitiamo-page--home .dh-link-arrow:hover { text-decoration: underline; }

body.sitiamo-page--home .dh-section-desc {
    font-size: var(--text-md);
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 10px;
}

/* ================================================================
   HEADER
   ================================================================ */
body.sitiamo-page--home .dh-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(246,242,235,0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--cream-300);
}
body.sitiamo-page--home .dh-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}
body.sitiamo-page--home .dh-header__logo-link { display: inline-flex; }
body.sitiamo-page--home .dh-header__logo-link img { height: 30px; width: auto; display: block; }
body.sitiamo-page--home .dh-header__nav { display: flex; gap: 30px; }
body.sitiamo-page--home .dh-header__nav a {
    color: var(--text-body);
    font-weight: var(--fw-semibold);
    font-size: var(--text-base);
    text-decoration: none;
    white-space: nowrap;
}
body.sitiamo-page--home .dh-header__nav a:hover { color: var(--text-brand); text-decoration: none; }

/* Hamburger button — hidden on desktop */
body.sitiamo-page--home .dh-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
body.sitiamo-page--home .dh-header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink-900);
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.2s ease;
}
body.sitiamo-page--home .dh-header--open .dh-header__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.sitiamo-page--home .dh-header--open .dh-header__burger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
body.sitiamo-page--home .dh-header--open .dh-header__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer — hidden by default */
body.sitiamo-page--home .dh-mobile-nav {
    display: none;
    flex-direction: column;
    gap: 24px;
    background: var(--cream-100);
    border-top: 1px solid var(--cream-300);
    padding: 16px 0 24px;
}
body.sitiamo-page--home .dh-header--open .dh-mobile-nav {
    display: flex;
}
body.sitiamo-page--home .dh-mobile-nav nav {
    display: flex;
    flex-direction: column;
}
body.sitiamo-page--home .dh-mobile-nav nav a {
    color: var(--text-body);
    font-weight: var(--fw-semibold);
    font-size: var(--text-md);
    text-decoration: none;
    padding: 14px 20px;
    border-bottom: 1px solid var(--cream-300);
}
body.sitiamo-page--home .dh-mobile-nav nav a:first-child { border-top: 1px solid var(--cream-300); }
body.sitiamo-page--home .dh-mobile-nav nav a:hover { color: var(--text-brand); }
body.sitiamo-page--home .dh-mobile-nav .dh-btn {
    width: calc(100% - 40px);
    margin: 0 20px;
    justify-content: center;
}

/* ================================================================
   HERO
   ================================================================ */
body.sitiamo-page--home .dh-hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
}
body.sitiamo-page--home .dh-hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
body.sitiamo-page--home .dh-hero__headline {
    font-size: 76px;
    margin: 14px 0 0;
}
body.sitiamo-page--home .dh-hero__subtitle {
    font-size: var(--text-md);
    color: var(--text-muted);
    max-width: 440px;
    margin-top: 18px;
    line-height: 1.5;
}
body.sitiamo-page--home .dh-hero__ctas {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    align-items: center;
    flex-wrap: wrap;
}
body.sitiamo-page--home .dh-hero__delivery-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--text-muted);
    font-size: var(--text-sm);
}
body.sitiamo-page--home .dh-hero__delivery-note i[data-lucide] { width: 16px; height: 16px; flex-shrink: 0; }
body.sitiamo-page--home .dh-hero__social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}
body.sitiamo-page--home .dh-hero__avatars {
    display: flex;
}
body.sitiamo-page--home .dh-hero__avatars .dh-avatar + .dh-avatar { margin-left: -10px; }
body.sitiamo-page--home .dh-hero__social-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
}
body.sitiamo-page--home .dh-hero__visual { position: relative; }
body.sitiamo-page--home .dh-hero__img-wrap {
    background: var(--mint-100);
    border-radius: var(--radius-2xl);
    padding: 22px;
    box-shadow: var(--shadow-md);
}
body.sitiamo-page--home .dh-hero__img-wrap img {
    width: 100%;
    border-radius: var(--radius-xl);
    display: block;
}
body.sitiamo-page--home .dh-hero__bubble-wrap {
    position: absolute;
    bottom: -18px;
    left: -18px;
}
body.sitiamo-page--home .dh-hero__bubble {
    box-shadow: var(--shadow-md);
}

/* ================================================================
   SMOOTHIES
   ================================================================ */
body.sitiamo-page--home .dh-smoothies {
    background: var(--cream-200);
    padding: 60px 0;
}
body.sitiamo-page--home .dh-section-head { max-width: 680px; }
body.sitiamo-page--home .dh-smoothies__title {
    font-size: var(--text-2xl);
    font-weight: var(--fw-bold);
    margin-top: 8px;
}
body.sitiamo-page--home .dh-smoothies__cta-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 22px 0 26px;
}
body.sitiamo-page--home .dh-smoothies__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
body.sitiamo-page--home .dh-smoothies__card-img {
    aspect-ratio: 3/4;
    background: var(--cream-300);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}
body.sitiamo-page--home .dh-smoothies__card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
body.sitiamo-page--home .dh-smoothies__card-body { padding: 16px 18px 18px; }
body.sitiamo-page--home .dh-smoothies__card-name {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.sitiamo-page--home .dh-smoothies__card-name h3 { font-size: var(--text-md); font-weight: var(--fw-semibold); }
body.sitiamo-page--home .dh-smoothies__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}
body.sitiamo-page--home .dh-smoothies__card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
}

/* ================================================================
   MENU PREVIEW
   ================================================================ */
body.sitiamo-page--home .dh-menu-preview { padding: 56px 0; }
body.sitiamo-page--home .dh-menu-preview__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
}
body.sitiamo-page--home .dh-menu-preview__head h2 {
    font-size: var(--text-2xl);
    font-weight: var(--fw-bold);
    margin-top: 8px;
}
body.sitiamo-page--home .dh-menu-preview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
body.sitiamo-page--home .dh-menu-preview__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}
body.sitiamo-page--home .dh-menu-preview__icon i[data-lucide] { width: 30px; height: 30px; }
body.sitiamo-page--home .dh-menu-preview__name {
    font-size: var(--text-lg);
    font-weight: var(--fw-semibold);
    margin-top: 16px;
}
body.sitiamo-page--home .dh-menu-preview__desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: 6px;
    min-height: 38px;
}
body.sitiamo-page--home .dh-menu-preview__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

/* ================================================================
   GLOVO DELIVERY
   ================================================================ */
body.sitiamo-page--home .dh-delivery { padding: 56px 0; }
body.sitiamo-page--home .dh-delivery__inner {
    background: var(--mint-100);
    border-radius: var(--radius-2xl);
    padding: 44px 48px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 44px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
body.sitiamo-page--home .dh-delivery__eyebrow { color: var(--mint-700); }
body.sitiamo-page--home .dh-delivery__inner h2 {
    font-size: var(--text-3xl);
    font-weight: var(--fw-bold);
    margin-top: 10px;
}
body.sitiamo-page--home .dh-delivery__desc {
    font-size: var(--text-md);
    color: var(--text-body);
    max-width: 420px;
    margin-top: 14px;
    line-height: 1.5;
}
body.sitiamo-page--home .dh-delivery__cta-row {
    display: flex;
    gap: 14px;
    margin-top: 26px;
    align-items: center;
    flex-wrap: wrap;
}
body.sitiamo-page--home .dh-delivery__steps { display: flex; flex-direction: column; gap: 12px; }
body.sitiamo-page--home .dh-delivery__step {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    box-shadow: var(--shadow-sm);
}
body.sitiamo-page--home .dh-delivery__step-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--mint-100);
    color: var(--mint-700);
    display: flex;
    align-items: center;
    justify-content: center;
}
body.sitiamo-page--home .dh-delivery__step-icon i[data-lucide] { width: 22px; height: 22px; }
body.sitiamo-page--home .dh-delivery__step-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
body.sitiamo-page--home .dh-delivery__step-text strong {
    font-family: var(--font-display);
    font-weight: var(--fw-semibold);
    color: var(--text-strong);
}
body.sitiamo-page--home .dh-delivery__step-text span {
    font-size: var(--text-sm);
    color: var(--text-muted);
}
body.sitiamo-page--home .dh-delivery__step-num {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    color: var(--cream-400);
    font-size: var(--text-lg);
}

/* ================================================================
   LOYALTY BAND
   ================================================================ */
body.sitiamo-page--home .dh-loyalty {
    background: var(--coral-500);
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
}
body.sitiamo-page--home .dh-loyalty__watermark {
    position: absolute;
    right: -40px;
    top: -30px;
    width: 280px;
    opacity: 0.16;
    pointer-events: none;
    display: block;
}
body.sitiamo-page--home .dh-loyalty__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
body.sitiamo-page--home .dh-loyalty__eyebrow {
    font-family: var(--font-body);
    font-weight: var(--fw-extra);
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    display: block;
    color: #fff;
}
body.sitiamo-page--home .dh-loyalty__headline {
    color: #fff;
    font-size: var(--text-3xl);
    font-weight: var(--fw-bold);
    margin-top: 10px;
}
body.sitiamo-page--home .dh-loyalty__desc {
    margin-top: 14px;
    opacity: 0.92;
    max-width: 420px;
    line-height: 1.5;
}
body.sitiamo-page--home .dh-loyalty__store-btns {
    display: flex;
    gap: 12px;
    margin-top: 26px;
    flex-wrap: wrap;
}
body.sitiamo-page--home .dh-loyalty__card-wrap {
    display: flex;
    justify-content: center;
}
body.sitiamo-page--home .dh-loyalty__card {
    background: #fff;
    color: var(--ink-900);
    border-radius: var(--radius-xl);
    padding: 26px;
    width: 320px;
    box-shadow: var(--shadow-lg);
}
body.sitiamo-page--home .dh-loyalty__card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
body.sitiamo-page--home .dh-loyalty__card-title {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: var(--text-lg);
}
body.sitiamo-page--home .dh-loyalty__stamps {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 10px;
    margin-top: 18px;
}
body.sitiamo-page--home .dh-loyalty__stamp {
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--cream-200);
    display: flex;
    align-items: center;
    justify-content: center;
}
body.sitiamo-page--home .dh-loyalty__stamp--filled {
    background: var(--coral-500);
    color: #fff;
}
body.sitiamo-page--home .dh-loyalty__stamp i[data-lucide] { width: 16px; height: 16px; }
body.sitiamo-page--home .dh-loyalty__card-note {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: 16px;
    text-align: center;
}

/* ================================================================
   SHOP
   ================================================================ */
body.sitiamo-page--home .dh-shop { padding: 56px 0 72px; }
body.sitiamo-page--home .dh-shop__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
}
body.sitiamo-page--home .dh-shop__head h2 {
    font-size: var(--text-2xl);
    font-weight: var(--fw-bold);
    margin-top: 8px;
}
body.sitiamo-page--home .dh-shop__grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}
body.sitiamo-page--home .dh-shop__card-img {
    position: relative;
    aspect-ratio: 1;
    background: var(--cream-200);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}
body.sitiamo-page--home .dh-shop__card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
body.sitiamo-page--home .dh-shop__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
}
body.sitiamo-page--home .dh-shop__card-img--gift {
    background: var(--coral-500);
    display: flex;
    align-items: center;
    justify-content: center;
}
body.sitiamo-page--home .dh-shop__gift-watermark {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 180px;
    opacity: 0.18;
    display: block;
}
body.sitiamo-page--home .dh-shop__gift-inner {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    transform: rotate(-4deg);
    position: relative;
    z-index: 1;
}
body.sitiamo-page--home .dh-shop__gift-inner img { height: 22px; width: auto; display: block; }
body.sitiamo-page--home .dh-shop__gift-title {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: var(--text-xl);
    margin-top: 8px;
    color: var(--ink-900);
}
body.sitiamo-page--home .dh-shop__gift-range {
    font-size: var(--text-sm);
    color: var(--text-muted);
}
body.sitiamo-page--home .dh-shop__card-body { padding: 20px; }
body.sitiamo-page--home .dh-shop__card-body h3 { font-size: var(--text-lg); font-weight: var(--fw-semibold); }
body.sitiamo-page--home .dh-shop__card-body p { font-size: var(--text-sm); color: var(--text-muted); margin-top: 6px; }
body.sitiamo-page--home .dh-shop__card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
}

/* ================================================================
   FOOTER
   ================================================================ */
body.sitiamo-page--home .dh-footer {
    background: var(--ink-900);
    color: var(--cream-100);
}
body.sitiamo-page--home .dh-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    padding-top: 56px;
    padding-bottom: 36px;
}
body.sitiamo-page--home .dh-footer__brand { margin-top: 50px; }
body.sitiamo-page--home .dh-footer__brand img { height: 30px; width: auto; margin-bottom: 16px; display: block; }
body.sitiamo-page--home .dh-footer__tagline {
    color: var(--cream-400);
    max-width: 240px;
    font-size: var(--text-sm);
    line-height: 1.5;
}
body.sitiamo-page--home .dh-footer__address {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--cream-400);
    font-size: var(--text-sm);
}
body.sitiamo-page--home .dh-footer__address i[data-lucide] { width: 16px; height: 16px; flex-shrink: 0; }
body.sitiamo-page--home .dh-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}
body.sitiamo-page--home .dh-footer__social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-100);
    text-decoration: none;
}
body.sitiamo-page--home .dh-footer__social-link:hover { background: rgba(255,255,255,0.15); text-decoration: none; }
body.sitiamo-page--home .dh-footer__social-link i[data-lucide] { width: 18px; height: 18px; }
body.sitiamo-page--home .dh-footer__col h4 {
    color: #fff;
    font-family: var(--font-display);
    font-weight: var(--fw-semibold);
    margin-bottom: 14px;
}
body.sitiamo-page--home .dh-footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
body.sitiamo-page--home .dh-footer__col a {
    color: var(--cream-400);
    font-size: var(--text-sm);
    text-decoration: none;
}
body.sitiamo-page--home .dh-footer__col a:hover { color: var(--cream-100); text-decoration: none; }
body.sitiamo-page--home .dh-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 32px;
    text-align: center;
    color: var(--cream-400);
    font-size: var(--text-xs);
}

/* ================================================================
   BEVERAGES (toggle smoothie / beshake)
   ================================================================ */
body.sitiamo-page--home .dh-beverages {
    background: var(--cream-200);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
}
body.sitiamo-page--home .dh-beverages__title { font-size: var(--text-2xl); font-weight: var(--fw-bold); margin-top: 8px; }

body.sitiamo-page--home .dh-beverages__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 24px 0 44px;
}
body.sitiamo-page--home .dh-beverages__tabs {
    display: flex;
    gap: 6px;
    background: var(--white);
    padding: 6px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-xs);
}
body.sitiamo-page--home .dh-beverages__tab {
    border: none;
    cursor: pointer;
    background: transparent;
    color: var(--text-body);
    font-family: var(--font-display);
    font-weight: var(--fw-semibold);
    font-size: var(--text-md);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    transition: all var(--dur-fast) var(--ease-out);
}
body.sitiamo-page--home .dh-beverages__tab--active {
    background: var(--ink-900);
    color: var(--cream-50);
}
body.sitiamo-page--home .dh-beverages__cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.sitiamo-page--home .dh-beverages__panel { display: none; }
body.sitiamo-page--home .dh-beverages__panel--active { display: block; }

body.sitiamo-page--home .dh-beverages__smoothie-img { width: 100%; height: auto; display: block; }

/* Beshake scroll rail */
body.sitiamo-page--home .dh-beverages__rail-wrap { position: relative; }
body.sitiamo-page--home .dh-beverages__rail {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 8px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
body.sitiamo-page--home .dh-beverages__rail::-webkit-scrollbar { display: none; }
body.sitiamo-page--home .dh-beverages__card {
    scroll-snap-align: start;
    flex: 0 0 clamp(220px, 24vw, 300px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--cream-300);
    aspect-ratio: 850 / 1190;
}
body.sitiamo-page--home .dh-beverages__card img { width: 100%; height: 100%; object-fit: cover; display: block; }

body.sitiamo-page--home .dh-beverages__arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter var(--dur-fast) var(--ease-out);
    z-index: 2;
}
body.sitiamo-page--home .dh-beverages__arrow:hover { filter: brightness(0.94); }
body.sitiamo-page--home .dh-beverages__arrow--prev { left: -18px; }
body.sitiamo-page--home .dh-beverages__arrow--next { right: -18px; }
body.sitiamo-page--home .dh-beverages__arrow i[data-lucide] { width: 24px; height: 24px; }

/* ================================================================
   SCROLL-FLOAT — animazione titoli carattere per carattere
   ================================================================ */
body.sitiamo-page--home [data-scroll-float] { overflow: hidden; padding-bottom: 0.15em; }
body.sitiamo-page--home .dh-char           { display: inline-block; }

/* ================================================================
   WAVE TRANSITION  (dh-delivery → dh-loyalty)
   ================================================================ */
body.sitiamo-page--home .dh-loyalty__wave {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}
body.sitiamo-page--home .dh-loyalty__wave svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: block;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    body.sitiamo-page--home .dh-hero__inner { grid-template-columns: 1fr; }
    body.sitiamo-page--home .dh-hero__visual { display: none; }
    body.sitiamo-page--home .dh-menu-preview__grid { grid-template-columns: repeat(2,1fr); }
    body.sitiamo-page--home .dh-delivery__inner { grid-template-columns: 1fr; }
    body.sitiamo-page--home .dh-loyalty__inner { grid-template-columns: 1fr; }
    body.sitiamo-page--home .dh-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    body.sitiamo-page--home .dh-container { padding: 0 20px; }
    body.sitiamo-page--home .dh-hero__headline { font-size: 48px; }
    body.sitiamo-page--home .dh-loyalty__headline { font-size: var(--text-2xl); }
    body.sitiamo-page--home .dh-delivery__inner h2 { font-size: var(--text-2xl); }
    body.sitiamo-page--home .dh-smoothies__grid { grid-template-columns: repeat(2,1fr); }
    body.sitiamo-page--home .dh-shop__grid { grid-template-columns: 1fr; }
    body.sitiamo-page--home .dh-header__nav { display: none; }
    body.sitiamo-page--home .dh-header__cta { display: none; }
    body.sitiamo-page--home .dh-header__burger { display: flex; }
    body.sitiamo-page--home .dh-footer__inner { grid-template-columns: 1fr; }
    body.sitiamo-page--home .dh-loyalty__card { width: 100%; max-width: 320px; }
    body.sitiamo-page--home .dh-beverages__toolbar { flex-direction: column; align-items: flex-start; }
    body.sitiamo-page--home .dh-beverages__arrow--prev { left: 4px; }
    body.sitiamo-page--home .dh-beverages__arrow--next { right: 4px; }
}
@media (max-width: 480px) {
    body.sitiamo-page--home .dh-hero__headline { font-size: 36px; }
    body.sitiamo-page--home .dh-loyalty__headline { font-size: var(--text-xl); }
    body.sitiamo-page--home .dh-delivery__inner h2 { font-size: var(--text-xl); }
    body.sitiamo-page--home .dh-beverages__title { font-size: var(--text-xl); }
    body.sitiamo-page--home .dh-menu-preview__head h2 { font-size: var(--text-xl); }
    body.sitiamo-page--home .dh-shop__head h2 { font-size: var(--text-xl); }
    body.sitiamo-page--home .dh-smoothies__grid { grid-template-columns: 1fr; }
    body.sitiamo-page--home .dh-menu-preview__grid { grid-template-columns: 1fr; }
}
