    :root {
        --lux-bg: #f6f1ea;
        --lux-bg-2: #fbf7f2;
        --lux-surface: rgba(255,255,255,.82);
        --lux-card: rgba(255,255,255,.92);
        --lux-text: #261b16;
        --lux-muted: #6f5d52;
        --lux-primary: #6e191b;
        --lux-primary-2: #a23f2d;
        --lux-accent: #c99a3c;
        --lux-accent-2: #f0c76e;
        --lux-line: rgba(38,27,22,.10);
        --lux-success: #1f7a45;
        --lux-shadow-sm: 0 12px 30px rgba(45,24,14,.08);
        --lux-shadow: 0 24px 60px rgba(45,24,14,.14);
        --lux-shadow-lg: 0 32px 90px rgba(24,10,6,.22);
        --lux-radius: 28px;
        --lux-radius-sm: 20px;
        --lux-container: 1280px;
    }

    .home-luxury {
        position: relative;
        overflow-x: clip;
        background:
            radial-gradient(circle at top left, rgba(201,154,60,.10), transparent 20%),
            radial-gradient(circle at top right, rgba(122,31,31,.08), transparent 16%),
            linear-gradient(180deg, var(--lux-bg) 0%, var(--lux-bg-2) 100%);
        color: var(--lux-text);
    }

    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 4px;
        z-index: 4000;
        background: linear-gradient(90deg, var(--lux-primary), var(--lux-accent), var(--lux-primary-2));
        box-shadow: 0 0 18px rgba(201,154,60,.35);
    }

    .seo-hidden {
        position: absolute !important;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0,0,0,0);
        white-space: nowrap;
        border: 0;
    }

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

    .lux-section {
        position: relative;
        padding: 100px 0;
    }

    .lux-section::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(110,25,27,.12), transparent);
    }

    .lux-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        width: max-content;
        padding: 10px 16px;
        border-radius: 999px;
        background: rgba(110,25,27,.07);
        color: var(--lux-primary);
        border: 1px solid rgba(110,25,27,.08);
        font-size: .9rem;
        font-weight: 800;
        letter-spacing: .02em;
    }

    .lux-head {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 34px;
    }

    .lux-head h2 {
        margin: 10px 0 0;
        font-size: clamp(2.2rem, 4vw, 4rem);
        line-height: .96;
        letter-spacing: -0.05em;
        max-width: 12ch;
    }

    .lux-head p {
        margin: 0;
        max-width: 58ch;
        color: var(--lux-muted);
        font-size: 1.02rem;
    }

    .lux-btn {
        border: 0;
        cursor: pointer;
        border-radius: 999px;
        padding: 15px 20px;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
        text-decoration: none;
    }

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

    .lux-btn-primary {
        background: linear-gradient(135deg, var(--lux-primary), var(--lux-primary-2));
        color: #fff;
        box-shadow: var(--lux-shadow-sm);
    }

    .lux-btn-secondary {
        background: rgba(255,255,255,.10);
        color: #fff;
        border: 1px solid rgba(255,255,255,.18);
        backdrop-filter: blur(10px);
    }

    .lux-btn-ghost-dark {
        background: rgba(255,255,255,.85);
        color: var(--lux-text);
        border: 1px solid var(--lux-line);
    }

    /* HERO */
    .hero-cinematic {
        position: relative;
        min-height: 100vh;
        overflow: hidden;
        background:
            linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.52)),
            url('../images/home/banner-genrico.png') center/cover no-repeat;
        display: flex;
        align-items: center;
        isolation: isolate;
    }

    .hero-cinematic::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 10% 14%, rgba(201,154,60,.18), transparent 18%),
            linear-gradient(90deg, rgba(24,10,7,.86) 0%, rgba(33,13,10,.62) 30%, rgba(0,0,0,.16) 68%, rgba(0,0,0,.26) 100%);
        z-index: -1;
    }

    .hero-noise {
        position: absolute;
        inset: 0;
        opacity: .08;
        background-image:
            radial-gradient(circle at 20% 30%, #fff 0 1px, transparent 1px),
            radial-gradient(circle at 80% 50%, #fff 0 1px, transparent 1px),
            radial-gradient(circle at 50% 80%, #fff 0 1px, transparent 1px);
        background-size: 180px 180px;
        pointer-events: none;
        mix-blend-mode: soft-light;
    }

    .hero-glow {
        position: absolute;
        border-radius: 50%;
        filter: blur(8px);
        opacity: .18;
        pointer-events: none;
    }

    .hero-glow.g1 {
        width: 260px;
        height: 260px;
        top: 90px;
        left: -50px;
        background: rgba(255,255,255,.18);
    }

    .hero-glow.g2 {
        width: 340px;
        height: 340px;
        top: 180px;
        right: -90px;
        background: rgba(201,154,60,.20);
    }

    .hero-glow.g3 {
        width: 180px;
        height: 180px;
        bottom: 80px;
        left: 8%;
        background: rgba(255,255,255,.08);
    }

    .hero-inner {
        position: relative;
        width: min(100% - 32px, 1320px);
        margin-inline: auto;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 32px;
        align-items: center;
        padding: 120px 0 84px;
    }

    .hero-copy {
        color: #fff;
        max-width: 820px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .hero-kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        width: max-content;
        padding: 10px 16px;
        border-radius: 999px;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.16);
        backdrop-filter: blur(12px);
        font-size: .92rem;
        font-weight: 800;
    }

    .hero-title {
        margin: 0;
        font-size: clamp(3.5rem, 7vw, 7.2rem);
        line-height: .84;
        letter-spacing: -0.08em;
        max-width: 10ch;
        text-shadow: 0 10px 28px rgba(0,0,0,.22);
    }

    .hero-title .accent {
        color: var(--lux-accent-2);
    }

    .hero-copy p {
        margin: 0;
        max-width: 64ch;
        color: rgba(255,255,255,.88);
        font-size: 1.08rem;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-metrics {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .hero-metric {
        padding: 18px;
        border-radius: 22px;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.14);
        backdrop-filter: blur(12px);
    }

    .hero-metric strong {
        display: block;
        color: #fff;
        font-size: 1.05rem;
        margin-bottom: 4px;
    }

    .hero-metric span {
        color: rgba(255,255,255,.78);
        font-size: .94rem;
    }

    .hero-side {
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: flex-end;
    }

    .hero-float-card,
    .hero-story-card {
        color: #fff;
        background: rgba(255,255,255,.14);
        border: 1px solid rgba(255,255,255,.16);
        backdrop-filter: blur(14px);
        box-shadow: var(--lux-shadow);
    }

    .hero-float-card {
        width: 250px;
        padding: 22px;
        border-radius: 28px;
    }

    .hero-float-card .mini-label {
        display: block;
        text-transform: uppercase;
        letter-spacing: .08em;
        font-size: .78rem;
        opacity: .8;
        margin-bottom: 10px;
    }

    .hero-float-card .big-number {
        display: block;
        font-size: 2.4rem;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 10px;
    }

    .hero-float-card p,
    .hero-story-card p {
        margin: 0;
        color: rgba(255,255,255,.82);
    }

    .hero-story-card {
        max-width: 380px;
        padding: 26px;
        border-radius: 30px;
    }

    .hero-story-card strong {
        display: block;
        margin-bottom: 8px;
        font-size: 1.12rem;
    }

    .hero-ribbon {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        border-top: 1px solid rgba(255,255,255,.12);
        border-bottom: 1px solid rgba(255,255,255,.12);
        background: rgba(20,8,6,.32);
        backdrop-filter: blur(10px);
        overflow: hidden;
    }

    .hero-ribbon-track {
        display: flex;
        gap: 40px;
        min-width: max-content;
        padding: 16px 22px;
        color: rgba(255,255,255,.86);
        font-weight: 700;
        animation: ribbonMove 28s linear infinite;
    }

    .hero-ribbon-track span {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        white-space: nowrap;
    }

    @keyframes ribbonMove {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
    }

    .hero-stats {
        width: min(100% - 32px, 1280px);
        margin: -34px auto 0;
        position: relative;
        z-index: 4;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .hero-stat {
        padding: 24px;
        border-radius: 24px;
        background: rgba(255,255,255,.96);
        border: 1px solid rgba(255,255,255,.84);
        box-shadow: var(--lux-shadow-sm);
    }

    .hero-stat strong {
        display: block;
        font-size: 1.9rem;
        color: var(--lux-primary);
        margin-bottom: 4px;
    }

    .hero-stat span {
        color: var(--lux-muted);
    }

    /* FEATURES */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px;
    }

    .feature-card {
        position: relative;
        overflow: hidden;
        border-radius: 28px;
        background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,249,244,.86));
        border: 1px solid rgba(47,36,29,.08);
        box-shadow: var(--lux-shadow-sm);
        padding: 28px;
        transition: transform .25s ease, box-shadow .25s ease;
    }

    .feature-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(201,154,60,.10), transparent 45%);
        pointer-events: none;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--lux-shadow);
    }

    .feature-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        display: grid;
        place-items: center;
        background: rgba(110,25,27,.08);
        color: var(--lux-primary);
        font-size: 1.35rem;
        margin-bottom: 16px;
    }

    .feature-card h3 {
        margin: 0 0 8px;
    }

    .feature-card p {
        margin: 0;
        color: var(--lux-muted);
    }

    /* STORY */
    .section-story {
        background:
            radial-gradient(circle at 10% 20%, rgba(201,154,60,.08), transparent 18%),
            radial-gradient(circle at 90% 30%, rgba(122,31,31,.06), transparent 18%);
    }

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

    .story-copy {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .story-copy p {
        margin: 0;
        color: var(--lux-muted);
    }

    .story-stack {
        display: grid;
        gap: 14px;
    }

    .story-item {
        padding: 18px 20px;
        border-radius: 22px;
        background: rgba(255,255,255,.84);
        border: 1px solid rgba(47,36,29,.08);
        box-shadow: var(--lux-shadow-sm);
        transition: transform .22s ease, box-shadow .22s ease;
    }

    .story-item:hover {
        transform: translateX(6px);
        box-shadow: var(--lux-shadow);
    }

    .story-item span {
        color: var(--lux-muted);
    }

    .story-visual {
        min-height: 560px;
        border-radius: 34px;
        overflow: hidden;
        position: relative;
        background:
            linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.24)),
            url('../images/home/banner-storytelling.png') center/cover;
        box-shadow: var(--lux-shadow-lg);
    }

    .story-visual::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(145deg, rgba(201,154,60,.12), transparent 38%);
    }

    /* SHOP */
    .section-products {
        background: linear-gradient(180deg, rgba(255,255,255,.26), rgba(255,248,242,.62));
    }

    .shop-banner {
        margin-bottom: 26px;
        padding: 28px;
        border-radius: 30px;
        background:
            radial-gradient(circle at top left, rgba(255,255,255,.12), transparent 18%),
            linear-gradient(135deg, #431717, #7a1f1f 45%, #a8402d 78%, #c58c35);
        color: #fff;
        box-shadow: var(--lux-shadow);
        display: grid;
        grid-template-columns: 1.12fr .88fr;
        gap: 22px;
        align-items: center;
        overflow: hidden;
        position: relative;
    }

    .shop-banner::after {
        content: "";
        position: absolute;
        right: -90px;
        top: -90px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%);
    }

    .shop-banner p {
        margin: 10px 0 0;
        color: rgba(255,255,255,.84);
        max-width: 58ch;
    }

    .shop-banner-actions {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 12px;
    }

    .shop-layout {
        display: grid;
        grid-template-columns: 310px minmax(0, 1fr);
        gap: 24px;
        align-items: start;
    }

    .shop-sidebar {
        padding: 22px;
        border-radius: 28px;
        background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,249,244,.86));
        border: 1px solid rgba(47,36,29,.08);
        box-shadow: var(--lux-shadow-sm);
        position: sticky;
        top: 96px;
    }

    .shop-sidebar h3 {
        margin: 0 0 10px;
    }

    .shop-sidebar p {
        margin: 0 0 16px;
        color: var(--lux-muted);
    }

    .category-launcher {
        display: block;
        width: 100%;
        padding: 18px 20px;
        border-radius: 22px;
        background: linear-gradient(135deg, #3f1d1b, #6f2c24 58%, #9e6435);
        color: #fff;
        border: 1px solid rgba(255,255,255,.10);
        box-shadow: 0 18px 36px rgba(60,25,18,.18);
        margin-bottom: 18px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    .category-launcher::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(255,255,255,.12), transparent 32%);
        pointer-events: none;
    }

    .category-launcher strong {
        display: block;
        font-size: 1.05rem;
        margin-bottom: 4px;
    }

    .category-launcher span {
        color: rgba(255,255,255,.78);
        font-size: .94rem;
    }

    .category-panel {
        display: grid;
        gap: 12px;
        margin-top: 14px;
    }

    .category-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(255,255,255,.82);
        border: 1px solid rgba(47,36,29,.08);
        transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
        text-decoration: none;
    }

    .category-item:hover {
        transform: translateX(4px);
        border-color: rgba(201,154,60,.32);
        box-shadow: 0 16px 28px rgba(60,25,18,.08);
    }

    .category-item small {
        color: var(--lux-muted);
        display: block;
        margin-top: 3px;
    }

    .products-top {
        border-radius: 28px;
        background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,249,244,.88));
        border: 1px solid rgba(47,36,29,.08);
        box-shadow: var(--lux-shadow-sm);
        padding: 22px;
        margin-bottom: 22px;
        display: flex;
        justify-content: space-between;
        gap: 16px;
        align-items: center;
        flex-wrap: wrap;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    .product-card {
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 26px;
        background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,249,244,.88));
        border: 1px solid rgba(47,36,29,.08);
        box-shadow: var(--lux-shadow-sm);
        transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--lux-shadow);
        border-color: rgba(201,154,60,.26);
    }

    .product-media {
        aspect-ratio: 1 / 1;
        position: relative;
        overflow: hidden;
        background: #efe5d9;
    }

    .product-media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(20,12,8,.14), transparent 40%);
        pointer-events: none;
    }

    .product-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform .45s ease;
    }

    .product-card:hover .product-media img {
        transform: scale(1.06);
    }

    .product-tag {
        position: absolute;
        top: 14px;
        left: 14px;
        border-radius: 999px;
        background: rgba(255,250,245,.95);
        padding: 8px 12px;
        border: 1px solid var(--lux-line);
        font-size: .84rem;
        font-weight: 800;
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
        z-index: 2;
    }

    .product-body {
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        flex: 1;
        min-height: 270px;
    }

    .product-body p {
        color: var(--lux-muted);
        margin: 0;
    }

    .product-meta {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        align-items: center;
        margin-top: auto;
    }

    .stock-badge {
        font-size: .9rem;
        color: var(--lux-success);
        font-weight: 800;
    }

    /* CONTACT / BOOKING */
    .section-contact-home,
    .section-booking-home {
        background:
            radial-gradient(circle at top right, rgba(201,154,60,.06), transparent 18%);
    }

    .contact-grid,
    .booking-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .lux-panel {
        padding: 26px;
        border-radius: 28px;
        background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,249,244,.88));
        border: 1px solid rgba(47,36,29,.08);
        box-shadow: var(--lux-shadow-sm);
    }

    .lux-panel h3 {
        margin: 0 0 8px;
    }

    .lux-panel p {
        color: var(--lux-muted);
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .form-grid .full {
        grid-column: 1 / -1;
    }

    .field,
    .select,
    .textarea {
        width: 100%;
        border: 1px solid rgba(47,36,29,.10);
        background: rgba(255,255,255,.92);
        border-radius: 18px;
        padding: 14px 14px;
        outline: none;
    }

    .textarea {
        min-height: 150px;
        resize: vertical;
    }

    .check {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        font-size: .96rem;
        color: var(--lux-muted);
    }

    .info-list {
        display: grid;
        gap: 14px;
        margin-top: 18px;
    }

    .info-item {
        padding: 18px;
        border-radius: 20px;
        background: rgba(255,255,255,.82);
        border: 1px solid rgba(47,36,29,.08);
    }

    .map-box {
        margin-top: 18px;
        min-height: 260px;
        border-radius: 24px;
        overflow: hidden;
        background:
            linear-gradient(180deg, rgba(122,31,31,.10), rgba(201,154,60,.18)),
            url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80') center/cover;
    }

    /* CTA */
    .section-cta-home {
        padding-bottom: 100px;
    }

    .final-cta-card {
        border-radius: 38px;
        padding: 40px;
        background: url('../images/home/banner-storytelling.png');
        color: #fff;
        box-shadow: var(--lux-shadow-lg);
        display: grid;
        grid-template-columns: 1.08fr .92fr;
        gap: 24px;
        align-items: center;
        overflow: hidden;
        position: relative;
    }

    .final-cta-card::after {
        content: "";
        position: absolute;
        right: -80px;
        top: -80px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,.16), transparent 68%);
    }

    .final-cta-copy,
    .final-cta-actions {
        position: relative;
        z-index: 1;
    }

    .final-cta-copy h2 {
        color: #fff;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .final-cta-copy p {
        color: rgba(255,255,255,.84);
        margin: 0;
        max-width: 56ch;
    }

    .final-cta-actions {
        display: flex;
        gap: 12px;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .final-cta-actions .lux-btn-secondary {
        background: rgba(255,255,255,.10);
        color: #fff;
        border: 1px solid rgba(255,255,255,.16);
    }

    /* REVEAL */
    .reveal-up,
    .reveal-scale {
        opacity: 0;
        transform: translateY(28px);
        will-change: transform, opacity;
    }

    .reveal-scale {
        transform: translateY(18px) scale(.96);
    }

    .is-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
        transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1);
    }

    .tilt-card {
        transform-style: preserve-3d;
        will-change: transform;
    }

    .magnetic-btn {
        transition: transform .18s ease;
    }

    @media (max-width: 1100px) {
        .hero-inner,
        .story-grid,
        .shop-layout,
        .contact-grid,
        .booking-grid,
        .final-cta-card,
        .shop-banner {
            grid-template-columns: 1fr;
        }

        .hero-metrics,
        .hero-stats,
        .products-grid,
        .features-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .shop-sidebar {
            position: static;
        }

        .hero-side {
            align-items: flex-start;
        }

        .final-cta-actions {
            justify-content: flex-start;
        }
    }

    @media (max-width: 760px) {
        .lux-section {
            padding: 72px 0;
        }

        .hero-cinematic {
            min-height: 94vh;
        }

        .hero-inner {
            padding: 92px 0 78px;
        }

        .hero-title {
            max-width: none;
            font-size: clamp(2.7rem, 10vw, 4.6rem);
        }

        .hero-metrics,
        .hero-stats,
        .products-grid,
        .features-grid,
        .form-grid {
            grid-template-columns: 1fr;
        }

        .hero-actions,
        .shop-banner-actions,
        .final-cta-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .hero-actions .lux-btn,
        .shop-banner-actions .lux-btn,
        .final-cta-actions .lux-btn {
            width: 100%;
        }

        .hero-float-card,
        .hero-story-card {
            width: 100%;
            max-width: none;
        }

        .final-cta-card,
        .lux-panel,
        .shop-sidebar {
            padding: 20px;
        }
    }
    .section-storytelling-home {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(201,154,60,.08), transparent 18%),
        radial-gradient(circle at bottom right, rgba(122,31,31,.06), transparent 16%);
}

.storytelling-shell {
    position: relative;
    padding: 42px;
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,249,244,.88));
    border: 1px solid rgba(47,36,29,.08);
    box-shadow: 0 24px 60px rgba(50,30,20,.10);
    overflow: hidden;
}

.storytelling-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(201,154,60,.10), transparent 28%),
        radial-gradient(circle at top right, rgba(122,31,31,.05), transparent 20%);
    pointer-events: none;
}

.storytelling-top,
.storytelling-main,
.storytelling-journey {
    position: relative;
    z-index: 1;
}

.storytelling-top {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 26px;
    align-items: end;
    margin-bottom: 34px;
}

.storytelling-top h2 {
    margin: 14px 0 0;
    font-size: clamp(2.3rem, 4vw, 4.2rem);
    line-height: .95;
    letter-spacing: -.05em;
    max-width: 12ch;
}

.storytelling-top p {
    margin: 0;
    color: var(--lux-muted);
    font-size: 1.04rem;
    max-width: 60ch;
}

.storytelling-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 34px;
}

.storytelling-editorial {
    padding: 28px;
    border-radius: 30px;
    background: url('../images/home/banner-home.png');
    color: #fff;
    box-shadow: 0 24px 50px rgba(50,20,12,.18);
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-repeat: no-repeat;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.storytelling-editorial::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%);
}

.storytelling-badge,
.storytelling-signature {
    position: relative;
    z-index: 1;
}

.storytelling-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(10px);
    font-weight: 700;
    font-size: .92rem;
}

.storytelling-editorial h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(1.6rem, 2.4vw, 2.4rem);
    line-height: 1.02;
    letter-spacing: -.03em;
    max-width: 14ch;
}

.storytelling-editorial p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255,255,255,.86);
    max-width: 54ch;
}

.storytelling-signature {
    margin-top: auto;
    padding-top: 10px;
}

.storytelling-signature strong {
    display: block;
    font-size: 1.08rem;
}

.storytelling-signature span {
    color: rgba(255,255,255,.78);
    font-size: .95rem;
}

.storytelling-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.story-value-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(47,36,29,.08);
    box-shadow: 0 14px 34px rgba(50,30,20,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.story-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(50,30,20,.12);
}

.story-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: rgba(122,31,31,.08);
    color: var(--lux-primary);
    font-size: 1.3rem;
}

.story-value-card h3 {
    margin: 0 0 6px;
    font-size: 1.08rem;
}

.story-value-card p {
    margin: 0;
    color: var(--lux-muted);
}

.storytelling-journey {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding-top: 16px;
}

.journey-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 34px;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,154,60,.12), rgba(122,31,31,.18), rgba(201,154,60,.12));
    z-index: 0;
}

.journey-step {
    position: relative;
    z-index: 1;
    padding: 26px 20px 22px;
    border-radius: 24px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(47,36,29,.08);
    box-shadow: 0 14px 32px rgba(50,30,20,.06);
    text-align: left;
}

.journey-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lux-primary), var(--lux-primary-2));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(122,31,31,.18);
}

.journey-step h4 {
    margin: 0 0 8px;
    font-size: 1.02rem;
}

.journey-step p {
    margin: 0;
    color: var(--lux-muted);
    font-size: .96rem;
}

@media (max-width: 1100px) {
    .storytelling-top,
    .storytelling-main {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .storytelling-shell {
        padding: 22px;
        border-radius: 28px;
    }

    .storytelling-values,
    .storytelling-journey {
        grid-template-columns: 1fr;
    }

    .journey-line {
        display: none;
    }

    .story-value-card {
        padding: 20px;
    }
}



.product-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.3px;
}

.stock-badge {
    display: inline-block;
    background: #e8f7ec;
    color: #1f8f45;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #cdeed7;
    white-space: nowrap;
}

.product-description {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}
.field-label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.taste-select-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.taste-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.taste-btn input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.taste-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.taste-btn:hover span {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.22);
    color: #fff;
}

.taste-btn input[type="radio"]:checked + span {
    background: linear-gradient(135deg, #d4af6d, #b8893f);
    border-color: #d4af6d;
    color: #111;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(212, 175, 109, 0.22);
}

