/* ==============================================
   NYAMI — Design System

   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk:ital,wght@0,400;0,500;0,600;0,700;1,400;1,700&family=Dancing+Script:wght@700&family=Playfair+Display:ital,wght@1,700;1,900&display=swap');

/* ------- DESIGN TOKENS ------- */
:root {
    --color-bg: #FDF4E9;
    --color-text: #3e2a1a;
    --color-bleu-canard: #2a5764;
    --color-bleu-ciel: #89cfe5;
    --color-bordeaux: #9d2f60;
    --color-rose: #de82a3;
    --color-orange: #EC6637;
    --color-ocre: #F8B474;

    --font: 'Familjen Grotesk', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-script: 'Dancing Script', cursive;

    /* Typographie — Fluid responsive */
    --font-size-base: 1.25rem;
    /* ~22px descriptions */
    --line-height-base: 1.6;
    --font-size-h1: clamp(2.5rem, 5vw + 1rem, 6.5rem);
    /* 40px → 104px */
    --font-size-h2: clamp(2.5rem, 5vw + 0.5rem, 6.5rem);
    /* 40px → 104px */
    --font-size-h3: clamp(1.3rem, 2vw + 0.4rem, 2.2rem);
    /* 21px → 35px */
    --font-size-small: clamp(0.75rem, 0.5vw + 0.5rem, 0.9rem);

    /* Spacings */
    --block-py: clamp(5rem, 10vw, 10rem);
    --container: 1280px;
    --gutter: clamp(1.5rem, 4vw, 3.5rem);
    --section-gap: clamp(6rem, 12vw, 12rem);
    --spacing-md: 2rem;

    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --radius-img: 24px;
    --radius-card: 24px;
}

@media (min-width: 1800px) {
    :root {
        --container: 1520px;
    }
}

/* ------- RESET ------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 0.01em;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font);
    font-weight: 700;
}

em {
    font-style: italic;
}

strong {
    font-weight: 800;
}

/* ------- GRAIN TEXTURE OVERLAY ------- */
.grain-overlay {
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

/* ------- COLOR UTILITIES ------- */
.color-beige {
    background: var(--color-bg);
    color: var(--color-text);
}

.color-marron {
    background: var(--color-text) !important;
    color: var(--color-bg) !important;
}

.color-rose {
    background: var(--color-rose) !important;
    color: var(--color-text) !important;
}

.color-bleu-ciel {
    background: var(--color-bleu-ciel) !important;
    color: var(--color-text) !important;
}

.color-ocre {
    background: var(--color-ocre) !important;
    color: var(--color-text) !important;
}

.color-orange {
    background: var(--color-orange) !important;
    color: white !important;
}

.color-bleu-canard {
    background: var(--color-bleu-canard) !important;
    color: white !important;
}

.color-bordeaux {
    background: var(--color-bordeaux) !important;
    color: white !important;
}

/* ------- TOP TICKER BAR ------- */
.ticker-bar {
    background: var(--color-orange);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    padding: 0.65rem 0;
}

.ticker-track {
    display: inline-flex;
    gap: 3rem;
    animation: ticker 28s linear infinite;
    will-change: transform;
}

.ticker-track span {
    padding: 0 1rem;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333%);
    }
}

/* ------- NAVBAR ------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, border-color 0.35s ease;
}

.navbar.scrolled {
    background: var(--color-bg);
    border-bottom: 1px solid rgba(62, 42, 26, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0.75rem var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.logo-img {
    height: 72px !important;
    width: auto;
    transition: transform 0.3s var(--ease-spring), filter 0.35s ease;
    filter: brightness(0) invert(1);
    margin: 0;
    padding: 0;
    display: block;
}

.navbar.scrolled .logo-img {
    filter: drop-shadow(0 4px 12px rgba(62, 42, 26, 0.1));
}

/* Nav CTA : blanc sur orange, brun après scroll */
.navbar:not(.scrolled) .btn-pill {
    background: white;
    color: var(--color-text);
    box-shadow: none;
}

.navbar:not(.scrolled) .btn-pill:hover {
    background: var(--color-text);
    color: white;
}

.logo-img:hover {
    transform: scale(1.04) rotate(-0.5deg);
}

.logo-text {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: -0.06em;
}

/* ------- BUTTONS ------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: clamp(1rem, 2.5vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
    border-radius: 100px;
    font-family: var(--font);
    font-weight: 800;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn-pill {
    background: var(--color-text);
    color: var(--color-bg);
    box-shadow: 0 8px 24px rgba(62, 42, 26, 0.18);
    letter-spacing: 0.02em;
}

.btn-pill:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 36px rgba(62, 42, 26, 0.22);
    background: var(--color-bordeaux);
    color: white;
}

.btn-cta {
    background: var(--color-orange);
    color: white;
    box-shadow: 0 12px 32px rgba(236, 102, 55, 0.35);
    letter-spacing: 0.01em;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 44px rgba(236, 102, 55, 0.42);
    background: #d45528;
}

.btn-cta-light {
    background: var(--color-bg);
    color: var(--color-text);
    box-shadow: 0 12px 32px rgba(253, 244, 233, 0.15);
}

.btn-cta-light:hover {
    background: var(--color-orange);
    color: white;
    transform: translateY(-4px) scale(1.03);
}

/* ------- REVEAL ANIMATION ------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ------- HERO SECTION ------- */
.hero-food {
    background: var(--color-orange);
    position: relative;
    overflow: hidden;
    padding: clamp(5.5rem, 8vw, 7rem) var(--gutter) clamp(3rem, 5vw, 5rem);
}

/* Decorative organic shapes */
.hero-deco {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-deco-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    top: -100px;
    left: -100px;
}

.hero-deco-2 {
    width: 300px;
    height: 300px;
    background: rgba(248, 180, 116, 0.15);
    bottom: -80px;
    right: 10%;
}

.hero-food-grid {
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(2.5rem, 4vw, 4.5rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left content */
.fonio-story-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    height: 100%;
    color: white;
}

.hero-food .eyebrow {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: fit-content;
}

.hero-food-title {
    font-family: var(--font);
    font-size: clamp(5rem, 13vw, 12rem);
    font-weight: 900;
    line-height: 0.82;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: white;
    margin-top: 0.2rem;
    margin-bottom: 0;
}

.hero-food-title em {
    font-family: var(--font);
    font-style: normal;
    text-transform: inherit;
    color: var(--color-ocre);
    font-size: 1em;
}

.hero-food-subtitle {
    font-family: var(--font);
    font-size: clamp(1.6rem, 3.8vw, 3.8rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: white;
    margin-top: 0.25rem;
    margin-bottom: 0;
}


.hero-food-desc {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0;
}

.hero-food-desc strong {
    color: white;
    display: block;
    margin-top: 0.4rem;
}

/* Social icons row hero */
.social-icons-hero {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    margin-top: 0.8rem;
    margin-bottom: 1rem;
}

.social-icons-hero a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.social-icons-hero a:hover {
    color: white;
}

/* Hero badges */
.hero-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

/* Form inline */
.hero-form-inline {
    margin-top: 0.5rem;
}

.hero-form-inline .form-pre-title {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.4rem;
}

.hero-form-inline .form-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    max-width: 42ch;
}

.hero-form-inline .form-row {
    display: flex;
    gap: 0.5rem;
}

.hero-form-inline .email-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--color-text);
}

.hero-form-inline .email-input::placeholder {
    color: rgba(62, 42, 26, 0.45);
}

/* Trust row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-hero {
    background: var(--color-text);
    color: var(--color-bg);
    box-shadow: 0 8px 24px rgba(62, 42, 26, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 36px rgba(62, 42, 26, 0.4);
    background: var(--color-bordeaux);
    color: white;
}

/* Right: food mosaic — immersive full-height */
.hero-food-mosaic {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0.75rem;
    align-items: stretch;
    margin-bottom: clamp(-3rem, -4vw, -5rem);
    padding-bottom: clamp(3rem, 4vw, 5rem);
}

.mosaic-col-main {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1.25;
}

.mosaic-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-img);
    box-shadow: 0 28px 70px rgba(62, 42, 26, 0.32);
}

.mosaic-frame-main {
    height: clamp(520px, 70vh, 750px);
}

.fonio-vis-vertical .fonio-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    transform: scale(1.15) !important;
    /* Zoom pour supprimer les micro-bordures */
    display: block;
    background: transparent;
}

.mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mosaic-frame:hover .mosaic-img {
    transform: scale(1.06);
}

.mosaic-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(253, 244, 233, 0.92);
    color: var(--color-text);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(62, 42, 26, 0.15);
}

.mosaic-col-side {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 0.85;
}

.mosaic-col-side .mosaic-frame {
    flex: 1;
    min-height: clamp(180px, 30vh, 350px);
}

/* Seal rotatif sur col-main */
.seal-wrapper-hero {
    position: absolute;
    bottom: -10px;
    right: -20px;
    width: 150px;
    height: 150px;
    z-index: 20;
    filter: drop-shadow(0 8px 24px rgba(62, 42, 26, 0.25));
}

.seal-wrapper-hero .seal-svg {
    width: 150px;
    height: 150px;
    transform-origin: center;
    animation: rotateSeal 14s linear infinite;
}

.seal-wrapper-hero .seal-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    color: var(--color-bordeaux);
    font-weight: 900;
}

@keyframes rotateSeal {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.form-pre-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 0.75rem;
}

.form-headline {
    font-size: var(--font-size-h2);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.form-headline em {
    font-family: var(--font-serif);
    color: var(--color-orange);
}

.capture-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.email-input {
    width: 100%;
    border: 1.5px solid rgba(62, 42, 26, 0.15);
    background: var(--color-bg);
    padding: 1rem 1.4rem;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.email-input:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(236, 102, 55, 0.15);
}

.email-input::placeholder {
    color: rgba(62, 42, 26, 0.4);
}

.form-hint {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(62, 42, 26, 0.5);
    text-align: center;
}

.success-msg {
    background: var(--color-bleu-ciel);
    color: var(--color-text);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-img);
    font-weight: 800;
    font-size: 1.05rem;
    text-align: center;
}

.pop-in {
    animation: pop 0.5s var(--ease-spring) forwards;
}

@keyframes pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ------- MARQUEE STRIP ------- */
.marquee-strip {
    overflow: visible;
    padding: 1.5rem 0;
    position: relative;
    z-index: 20;
}

.marquee-inner {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-bleu-ciel);
    will-change: transform;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333%);
    }
}


.block-rose {
    background: var(--color-rose);
    color: var(--color-text);
}

.block-ocre {
    background: var(--color-ocre);
    color: var(--color-text);
}

.block-cream {
    background: var(--color-bg);
}

.block-bleu-canard {
    background: var(--color-bleu-canard);
    color: white;
}

.block-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--section-gap);
    align-items: start;
}

.block-label {
    grid-column: 1 / -1;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: -1rem;
}

.block-title {
    font-size: var(--font-size-h1);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.block-title em {
    font-family: var(--font-serif);
    font-style: italic;
    text-transform: none;
    font-weight: 700;
    font-size: 1.3em;
    color: var(--color-orange);
}

/* ---- Story block ---- */
.block-story .block-text-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    align-self: center;
}

.block-tagline {
    font-size: var(--font-size-base);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-top: 0.5rem;
}

/* ---- Testimonials grid ---- */
.testimonials-grid {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.testi-card {
    border-radius: var(--radius-card);
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(62, 42, 26, 0.1);
    transition: transform 0.3s var(--ease-spring);
}

.testi-card:hover {
    transform: translateY(-6px);
}

.testi-big {
    grid-column: 1;
    grid-row: 1 / 3;
    transform: rotate(-1deg);
}

.testi-small {
    background: var(--color-bg);
    grid-column: 2;
    grid-row: 2;
    transform: rotate(1deg);
}

.testi-quote-mark {
    font-family: Georgia, serif;
    font-size: 6rem;
    line-height: 0.6;
    opacity: 0.3;
    margin-bottom: 1.25rem;
    color: var(--color-bleu-ciel);
}

.testi-quote-mark.small {
    font-size: 3.5rem;
    color: var(--color-orange);
}

.testi-text {
    font-size: var(--font-size-base);
    font-weight: 700;
    line-height: 1.65;
    color: white;
}

.testi-small .testi-text {
    color: var(--color-text);
    font-size: 1rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testi-author strong {
    display: block;
    color: white;
    font-weight: 900;
    font-size: 0.95rem;
}

.testi-author span {
    color: var(--color-bleu-ciel);
    font-size: 0.78rem;
    font-weight: 600;
    display: block;
}

.testi-small .testi-author strong {
    color: var(--color-text);
}

.testi-small .testi-author span {
    color: var(--color-orange);
}

.testi-rating-card {
    grid-column: 2;
    grid-row: 1;
    border-radius: var(--radius-card);
    padding: 1.5rem;
    text-align: center;
    transform: rotate(2deg);
    box-shadow: 0 16px 40px rgba(236, 102, 55, 0.25);
}

.rating-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.rating-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.3rem;
    opacity: 0.85;
}

/* ---- Features row ---- */
.features-row {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-item {
    border-radius: var(--radius-card);
    padding: 2.5rem 1.8rem;
    box-shadow: 0 16px 48px rgba(62, 42, 26, 0.07);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 28px 64px rgba(62, 42, 26, 0.13);
}

.feature-icon {
    display: block;
    margin-bottom: 0.5rem;
    transition: transform 0.3s var(--ease-spring);
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.feature-item h3 {
    font-size: var(--font-size-h3);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.feature-item p {
    font-size: var(--font-size-small);
    font-weight: 500;
    line-height: 1.65;
    opacity: 0.85;
}

/* ---- Products section ---- */
.block-products .block-title {
    color: var(--color-bg);
}

.products-intro {
    grid-column: 1 / -1;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-bleu-ciel);
    line-height: 1.7;
    max-width: 640px;
    margin-top: -1rem;
}

.products-layout {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.product-bloc {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(62, 42, 26, 0.12);
    transition: transform 0.4s var(--ease-spring), box-shadow 0.3s ease;
}

.product-bloc:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 40px 80px rgba(62, 42, 26, 0.2);
}

.product-img-area {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-spring), opacity 0.5s ease;
}

.product-img-base {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.product-recipe-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-img-recipe {
    position: absolute;
    inset: 0;
    transition: transform 0.6s var(--ease-spring);
}

.recipe-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 10;
}

.recipe-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(62, 42, 26, 0.85);
    color: var(--color-bg);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
    text-align: center;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.product-copy {
    padding: 2rem 2.2rem 2.5rem;
}

.product-num {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: var(--font-size-h3);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.product-desc {
    font-size: var(--font-size-small);
    font-weight: 500;
    line-height: 1.65;
    opacity: 0.8;
    margin-bottom: var(--spacing-md);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-tags span {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    background: rgba(62, 42, 26, 0.1);
    color: var(--color-text);
}

.color-rose .product-tags span {
    background: rgba(157, 47, 96, 0.15);
    color: var(--color-bordeaux);
}

/* ---- Kicker ---- */
.section-kicker {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}


/* ------- FONIO STORY SECTION ------- */
.fonio-story {
    background: var(--color-bleu-canard);
    color: white;
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 4vw, 4rem) var(--gutter) clamp(3rem, 5vw, 5rem);
}

.fonio-story-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    padding: 0;
}

/* Texte */
.fonio-kicker {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 1rem;
    color: white;
}

.fonio-title {
    font-size: var(--font-size-h2);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--color-bg);
    margin-bottom: 2rem;
}

.fonio-title em {
    font-family: var(--font);
    font-style: normal;
    text-transform: none;
    color: var(--color-orange);
    font-size: 1.1em;
}

/* Editorial Layout Texts */
.fonio-intro-blocks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.fonio-product-block {
    margin-bottom: 0.8rem;
}

.fonio-product-label {
    display: block;
    font-size: var(--font-size-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-orange);
    opacity: 0.9;
    margin-bottom: 1rem;
}

.fonio-product-desc {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.35;
    color: white;
}

.fonio-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3.5rem;
}

.fonio-badges .hero-badge {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.fonio-punch {
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: white;
}

.fonio-punch p {
    margin-top: 0;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--color-orange);
}

/* Mission statement */
.fonio-mission {
    margin-top: 1rem;
    padding: 1.5rem 1.8rem;
    border-left: 4px solid var(--color-ocre);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0 16px 16px 0;
}

.fonio-mission-text {
    font-family: var(--font);
    font-style: normal;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-ocre);
    margin: 0;
}



/* Visuels */
.fonio-story-visuals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Editorial Stack Layout (Story Section) */
.fonio-vis-stack {
    position: relative;
    margin-top: 1.5rem;
    padding-bottom: 2rem;
    overflow: visible !important;
    /* Pour laisser respirer la signature monumentale */
}

.fonio-vis-vertical {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-width: 100%;
    box-shadow: 0 42px 90px rgba(62, 42, 25, 0.25);
    overflow: hidden;
    border-radius: 48% 52% 42% 58% / 45% 55% 45% 55%;
    background: var(--color-bleu-canard);
    position: relative;
}

.fonio-vis-vertical img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fonio-vis-overlap {
    position: absolute;
    bottom: -20px;
    right: -25px;
    width: clamp(280px, 40vw, 420px);
    background: white;
    padding: 8px;
    border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
    box-shadow: 0 24px 50px rgba(62, 42, 26, 0.3);
    z-index: 20;
    transform: rotate(3deg);
    transition: transform 0.4s var(--ease-spring);
}

.fonio-vis-overlap:hover {
    transform: rotate(0deg) scale(1.05);
}

.fonio-img-overlap {
    width: 100%;
    border-radius: 50% 50% 50% 50% / 42% 42% 58% 58%;
    display: block;
}

.overlap-caption {
    position: absolute;
    top: -100px;
    left: -130px;
    font-family: var(--font);
    font-size: 6.5rem;
    /* Monumental, Iconic, Ultra-Premium */
    font-weight: 900;
    color: var(--color-orange);
    text-shadow: 0 10px 40px rgba(62, 42, 26, 0.18), 0 0 70px rgba(255, 255, 255, 0.8);
    transform: rotate(-15deg);
    z-index: 200;
    pointer-events: none;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .fonio-story-inner {
        grid-template-columns: 1fr;
    }

    .fonio-vis-stack {
        padding-bottom: 5rem;
        margin-top: 2.5rem;
        overflow: visible !important;
        width: 100%;
    }

    .fonio-vis-vertical {
        width: 100%;
        height: auto;
        aspect-ratio: 9 / 16;
        margin: 0 auto;
    }

    .fonio-vis-overlap {
        width: 150px;
        bottom: 0;
        right: 0;
        z-index: 25;
    }

    .overlap-caption {
        font-size: var(--font-size-base);
        top: -12px;
        left: -8px;
    }
}

/* ── Floating "yummy par nature" tag ───────────── */
.fonio-floating-tag {
    position: absolute;
    top: 15px;
    left: -15px;
    font-family: var(--font);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    background: var(--color-orange);
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    transform: rotate(-6deg);
    box-shadow: 0 8px 24px rgba(236, 102, 55, 0.35);
    z-index: 30;
    white-space: nowrap;
    animation: floatTag 3s ease-in-out infinite;
}

@keyframes floatTag {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50% { transform: rotate(-4deg) translateY(-6px); }
}

/* ==================================================
   UNIVERS NYAMI — Lifestyle Grid (Pattern Inspired)
   ================================================== */
.nyami-universe {
    padding: clamp(4rem, 8vw, 8rem) var(--gutter);
    background: var(--color-bg);
    overflow: hidden;
}

.universe-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.universe-kicker {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-orange);
    display: block;
    margin-bottom: 0.5rem;
}

.universe-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--color-text);
}

.universe-title em {
    font-family: var(--font);
    text-transform: none;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 1.1em;
    color: var(--color-orange);
}

/* Grid layout */
.universe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cards — base */
.universe-card {
    border-radius: 24px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}

.universe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(62, 42, 26, 0.15);
}

/* Card variants */
.universe-card--cream {
    background: #f5e6d3;
    color: var(--color-text);
}

.universe-card--teal {
    background: var(--color-bleu-canard);
    color: white;
    justify-content: center;
    text-align: center;
}

.universe-card--warm {
    background: #f8e8d4;
    color: var(--color-text);
}

.universe-card--orange {
    background: var(--color-orange);
    color: white;
    justify-content: center;
    text-align: center;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 8px,
        rgba(255, 255, 255, 0.08) 8px,
        rgba(255, 255, 255, 0.08) 16px
    );
}

/* Card images */
.universe-card-img {
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.universe-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.universe-card:hover .universe-card-img img {
    transform: scale(1.05);
}

/* Blob shape variant */
.universe-card-img--blob {
    border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
    width: 85%;
    margin: 0 auto;
}

.universe-card-img--blob img {
    height: 180px;
}

/* Card typography */
.universe-card-text {
    font-family: var(--font);
    font-size: 1.2rem;
    line-height: 1.45;
    color: var(--color-bleu-canard);
    margin: 0;
}

.universe-card-label {
    font-family: var(--font);
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0;
}

.universe-card-headline {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
}

.universe-card-headline--small {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.universe-card-headline em {
    font-family: var(--font);
    text-transform: none;
    font-style: normal;
    font-weight: 700;
    font-size: 1.15em;
}

.universe-card-brand {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    opacity: 0.7;
    margin: 0;
}

.universe-card-sub {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
    margin: 0;
}

.universe-card-link {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.universe-card-link:hover {
    opacity: 1;
}

/* Responsive universe grid */
@media (max-width: 1024px) {
    .universe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .universe-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .universe-card {
        min-height: 300px;
    }

    .fonio-floating-tag {
        font-size: 1rem;
        top: 10px;
        left: -5px;
    }
}

/* Header */
.promises-strips-header {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 9rem) var(--gutter) clamp(2.5rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promises-strips-kicker {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-orange);
}

.promises-strips-title {
    font-size: var(--font-size-h2);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--color-text);
}

.promises-strips-title em {
    font-family: var(--font);
    font-style: normal;
    text-transform: none;
    color: var(--color-orange);
    font-size: 1.1em;
}

/* List */
.promises-strips-list {
    display: flex;
    flex-direction: column;
    border-top: 1.5px solid rgba(62, 42, 26, 0.1);
}

/* Individual strip */
.promise-strip {
    display: grid;
    grid-template-columns: 1.5fr 2fr 160px;
    align-items: center;
    gap: clamp(2rem, 4vw, 5rem);
    padding-top: clamp(1.8rem, 3vw, 2.8rem);
    padding-bottom: clamp(1.8rem, 3vw, 2.8rem);
    padding-left: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter)));
    padding-right: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter)));
    border-bottom: 1.5px solid rgba(62, 42, 26, 0.1);
    cursor: default;
    transition: background 0.35s ease;
}

/* Headline — col 1 */
.promise-strip-headline {
    font-size: var(--font-size-h3);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--color-text);
    transition: letter-spacing 0.3s ease;
}

/* Desc — col 2 */
.promise-strip-desc {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.65;
    color: var(--color-text);
    opacity: 0.55;
}

/* Tag pill — col 3 */
.promise-strip-tag {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.55rem 1.25rem;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    justify-self: end;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    opacity: 0.7;
}

/* Hover per strip */
.promise-strip--gluten:hover {
    background: rgba(222, 130, 163, 0.12);
}

.promise-strip--speed:hover {
    background: rgba(236, 102, 55, 0.08);
}

.promise-strip--planet:hover {
    background: rgba(42, 87, 100, 0.08);
}

.promise-strip--taste:hover {
    background: rgba(248, 180, 116, 0.18);
}

.promise-strip:hover .promise-strip-tag {
    transform: scale(1.07) rotate(-1.5deg);
    box-shadow: 0 8px 24px rgba(62, 42, 26, 0.14);
}

.promise-strip:hover .promise-strip-headline {
    letter-spacing: -0.01em;
}

@media (max-width: 860px) {
    .promise-strip {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 0.75rem clamp(1.5rem, 3vw, 3rem);
    }

    .promise-strip-tag {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 560px) {
    .promise-strip {
        grid-template-columns: 1fr;
    }

    .promise-strip-tag {
        justify-self: start;
    }
}




/* ------- FAQ SECTION ------- */
.faq-section {
    background: var(--color-bg);
    padding: clamp(5rem, 8vw, 8rem) var(--gutter);
}

.faq-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.faq-header {
    margin-bottom: 4rem;
}

.faq-kicker {
    font-family: var(--font);
    font-size: 3rem;
    color: var(--color-orange);
    display: block;
    margin-bottom: 0.5rem;
    transform: rotate(-3deg);
    transform-origin: left bottom;
}

.faq-title {
    font-size: var(--font-size-h2);
    font-weight: 900;
    color: var(--color-text);
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.faq-title em {
    font-family: var(--font);
    font-style: normal;
    text-transform: none;
    color: var(--color-orange);
    font-size: 1.1em;
}

.faq-list {
    border-top: 1px solid rgba(62, 42, 26, 0.15);
}

.faq-item {
    border-bottom: 1px solid rgba(62, 42, 26, 0.15);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 2.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: var(--font-size-base);
    font-weight: 800;
    color: var(--color-text);
    font-family: var(--font);
    gap: 1rem;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-text);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-spring);
}

.faq-icon svg {
    width: 16px;
    height: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-spring), opacity 0.4s ease;
    opacity: 0;
}

.faq-answer p {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}




/* ------- FOUNDERS SECTION ------- */
.founders-section {
    background: var(--color-bleu-canard);
    color: white;
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 5vw, 4rem) var(--gutter);
}

.founders-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    gap: clamp(3rem, 6vw, 6rem);
}

.founders-img-col {
    position: relative;
}

.founders-img-frame {
    position: relative;
    height: clamp(620px, 85vh, 950px);
    overflow: hidden;
    border-radius: 45% 55% 50% 50% / 40% 40% 60% 60%;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.founders-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.founders-img-frame:hover .founders-img {
    transform: scale(1.06);
}


.founders-img-caption {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: rgba(62, 42, 26, 0.7);
    color: var(--color-bg);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.founders-text {
    padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.founders-kicker {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-bleu-ciel);
}

.founders-title {
    font-size: var(--font-size-h2);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: none;
    color: var(--color-bg);
}

.founders-title em {
    font-family: var(--font);
    font-style: normal;
    text-transform: none;
    color: var(--color-ocre);
    font-weight: 700;
    font-size: 0.55em;
    display: block;
    margin-top: 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.founders-bios {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.founders-bio {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.founders-bio-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.founders-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.founders-initials-a {
    background: var(--color-rose);
    color: var(--color-text);
}

.founders-initials-b {
    background: var(--color-orange);
    color: white;
}

.founders-bio-header strong {
    font-weight: 900;
    font-size: 1rem;
    color: white;
    display: block;
}

.founders-bio-header span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-bleu-ciel);
    display: block;
}

.founders-bio>p {
    font-size: var(--font-size-base);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
}

.founders-manifesto {
    font-family: var(--font);
    font-style: normal;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 500;
    line-height: 1.7;
    color: var(--color-ocre);
    border-left: 3px solid var(--color-ocre);
    padding-left: 1.25rem;
    margin-top: 1.5rem;
}

@media (max-width: 900px) {
    .founders-inner {
        grid-template-columns: 1fr;
    }

    .founders-img-frame {
        height: 340px;
    }
}


/* ------- PRODUCTS SECTION ------- */
.products-editorial {
    background: var(--color-text);
    color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.prod-pattern {
    position: absolute;
    inset: 0;
    color: var(--color-bleu-ciel);
    pointer-events: none;
    z-index: 0;
}

.prod-anchors {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto 3rem;
    max-width: var(--container);
    padding: 0 var(--gutter);
    position: relative;
    z-index: 2;
}

.btn-prod-anchor {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--color-bg);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    padding: 0.7rem 1.6rem;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-prod-anchor:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

.products-intro-banner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(4rem, 7vw, 8rem) var(--gutter) clamp(3rem, 5vw, 5rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.prod-kicker {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-ocre);
}

.prod-headline {
    font-size: var(--font-size-h2);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--color-bg);
}

.prod-headline em {
    font-family: var(--font);
    font-style: normal;
    text-transform: none;
    color: var(--color-ocre);
    font-weight: 700;
    font-size: 1.1em;
}

.prod-subline {
    font-size: 1.25rem;
    color: rgba(253, 244, 233, 0.8);
    line-height: 1.75;
}

.prod-desc {
    font-size: var(--font-size-base);
    line-height: 1.75;
    opacity: 0.96;
}

.prod-panel {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.prod-panel-ocre {
    background: var(--color-ocre);
}

.prod-panel-rose {
    background: var(--color-rose);
    color: var(--color-text) !important;
}

.prod-panel-bleu {
    background: var(--color-bleu-canard);
}

/* ── LAYOUT SPLIT FULL-BLEED ─────────────────── */
.prod-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: clamp(520px, 65vh, 720px);
}

.prod-split-reverse {
    direction: ltr;
}

.prod-split-reverse>* {
    direction: ltr;
}

/* Côté texte */
.prod-split-text {
    padding: clamp(4rem, 8vw, 8rem) clamp(3rem, 6vw, 7rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.prod-split-num {
    font-size: clamp(8rem, 18vw, 16rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    color: rgba(62, 42, 26, 0.08);
    position: absolute;
    top: -1rem;
    right: -1rem;
    pointer-events: none;
    user-select: none;
}

.prod-split-num-light {
    color: rgba(253, 244, 233, 0.1);
}

/* Key facts bar */
.prod-facts {
    display: flex;
    gap: 0;
    margin: 0.5rem 0;
    border-top: 1.5px solid rgba(62, 42, 26, 0.12);
    border-bottom: 1.5px solid rgba(62, 42, 26, 0.12);
}

.prod-facts-light {
    border-color: rgba(253, 244, 233, 0.2);
}

.prod-fact {
    flex: 1;
    padding: 0.9rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.2rem;
}

.prod-fact:not(:last-child) {
    border-right: 1.5px solid rgba(62, 42, 26, 0.12);
}

.prod-facts-light .prod-fact:not(:last-child) {
    border-color: rgba(253, 244, 233, 0.2);
}

.prod-fact strong {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--color-text);
}

.prod-facts-light .prod-fact strong {
    color: var(--color-bg);
}

.prod-fact span {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.55;
}

/* Carte recette */
.prod-recipe-card {
    margin-top: 2rem;
    background: rgba(236, 102, 55, 0.08);
    /* Plus vibrant */
    padding: 1.2rem;
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: center;
    border-left: 4px solid var(--color-orange);
}

.prod-recipe-card-light {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(253, 244, 233, 0.1);
}

.prod-recipe-icon {
    font-size: var(--font-size-base);
    flex-shrink: 0;
}

.prod-recipe-card strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.prod-recipe-card span {
    font-size: 1.25rem;
    font-weight: 700;
}

.prod-recipe-card-light {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(253, 244, 233, 0.1);
    box-shadow: none;
}

.prod-recipe-card-light strong {
    color: var(--color-bg);
    opacity: 0.6;
}

.prod-recipe-card-light span {
    color: var(--color-bg);
}

/* Bouton précommande produit */
.btn-preorder {
    background: var(--color-text);
    color: var(--color-bg);
    box-shadow: 0 10px 28px rgba(62, 42, 26, 0.22);
    align-self: flex-start;
    margin-top: 0.5rem;
}

.btn-preorder:hover {
    background: var(--color-bordeaux);
    color: white;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 40px rgba(62, 42, 26, 0.28);
    letter-spacing: 0.06em;
}

.btn-preorder-light {
    background: var(--color-bg);
    color: var(--color-text);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.btn-preorder-light:hover {
    background: var(--color-ocre);
    color: var(--color-text);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

/* Côté image */
.prod-split-img {
    position: relative;
    overflow: hidden;
}

.prod-split-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prod-split-img:hover .prod-split-photo {
    transform: scale(1.04);
}

.prod-split-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(253, 244, 233, 0.9);
    color: var(--color-text);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

/* Déco ovale — masqué */
.prod-deco-grain {
    display: none;
}

.prod-deco-grain-light {
    display: none;
}

@media (max-width: 900px) {
    .prod-split {
        grid-template-columns: 1fr;
    }

    .prod-split-img {
        min-height: 300px;
    }

    .prod-split-reverse {
        direction: ltr;
    }

    /* Flour block: text first on mobile */
    .prod-split-reverse .prod-split-text {
        order: -1;
    }
}

.prod-text {
    padding: clamp(3rem, 5vw, 6rem) var(--gutter);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.prod-ghost-num {
    position: absolute;
    top: -0.05em;
    left: calc(var(--gutter) - 0.1em);
    font-size: clamp(8rem, 18vw, 20rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    color: var(--color-text);
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.prod-ghost-light {
    color: white;
    opacity: 0.08;
}

.prod-num-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.5;
    position: relative;
    z-index: 1;
}

.prod-name {
    font-size: var(--font-size-h2);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--color-text);
    position: relative;
    z-index: 1;
}

.prod-desc {
    font-size: var(--font-size-base);
    line-height: 1.75;
    color: var(--color-text);
    opacity: 0.9;
    max-width: 44ch;
    position: relative;
    z-index: 1;
}

.prod-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.prod-pills span {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    background: rgba(62, 42, 26, 0.12);
    color: var(--color-text);
    border: 1px solid rgba(62, 42, 26, 0.15);
}

/* Variantes pour les fonds foncés (Section Farine) */
.prod-pills-light span {
    background: rgba(0, 0, 0, 0.2);
    color: var(--color-bg);
    border: 1px solid rgba(253, 244, 233, 0.15);
    box-shadow: none;
}

.prod-pills-bordeaux span {
    background: rgba(157, 47, 96, 0.12);
    color: var(--color-bordeaux);
    border-color: rgba(157, 47, 96, 0.2);
}

.prod-use {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
}

.prod-use-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text);
    opacity: 0.75;
}

.prod-img-wrap {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Forme grain de céréale organique */
.prod-grain-shape {
    position: relative;
    width: clamp(380px, 52%, 600px);
    aspect-ratio: 3 / 4;
    border-radius: 50% 50% 50% 50% / 38% 38% 62% 62%;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(62, 42, 26, 0.28);
    transition: transform 0.5s var(--ease-spring);
    flex-shrink: 0;
}

.prod-grain-tilt-right {
    transform: rotate(7deg);
}

.prod-grain-tilt-left {
    transform: rotate(-7deg);
}

.prod-grain-shape:hover {
    transform: rotate(0deg) scale(1.03) !important;
}

.prod-grain-shape .prod-img-big {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.prod-img-overflow {
    margin-right: 0;
    width: 100%;
}

.prod-overflow-left {
    margin-left: 0;
    width: 100%;
}

.prod-img-big {
    width: 100%;
    height: clamp(420px, 58vh, 640px);
    object-fit: cover;
    border-radius: var(--radius-img);
    box-shadow: 0 24px 64px rgba(62, 42, 26, 0.25);
    display: block;
}

.prod-overflow-left .prod-img-big {
    border-radius: var(--radius-img);
    box-shadow: 0 24px 64px rgba(62, 42, 26, 0.25);
}

.prod-recipe-peek {
    display: none;
}

.prod-recipe-peek:hover {
    transform: translateY(-4px) scale(1.02);
}

.prod-recipe-left {
    left: auto;
    right: -3rem;
}

.prod-recipe-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.prod-recipe-badge {
    padding: 0.7rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
}

.prod-recipe-badge strong {
    color: var(--color-orange);
    font-weight: 900;
}

@media (max-width: 900px) {
    .prod-panel-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .prod-panel-reverse {
        direction: ltr;
    }

    .prod-img-overflow,
    .prod-overflow-left {
        margin: 0;
        width: 100%;
    }

    .prod-img-big {
        height: 280px;
        border-radius: 0;
        box-shadow: none;
    }

    .prod-recipe-peek {
        display: none;
    }

    .prod-text {
        padding: 2.5rem var(--gutter);
    }

    .prod-ghost-num {
        font-size: 8rem;
    }
}

/* ------- FOOTER ------- */
.footer-editorial {
    padding: clamp(5rem, 10vw, 12rem) var(--gutter) clamp(3rem, 5vw, 5rem);
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-eyebrow {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-ocre);
    opacity: 0.8;
}

.footer-headline {
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: var(--color-bg);
}

.footer-headline em {
    font-family: var(--font) !important;
    text-transform: none;
    letter-spacing: -0.02em;
    font-style: normal;
    font-weight: 700;
    font-size: 1em;
    display: block;
    margin-top: 0.4rem;
}

.footer-sub {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(253, 244, 233, 0.7);
    line-height: 1.75;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.35);
    color: #fff;
    transition: background 0.2s, border-color 0.2s;
}

.footer-social-link:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
}

.footer-bar {
    margin-top: 4rem;
    padding-top: 2rem;
    width: 100%;
    border-top: 1px solid rgba(253, 244, 233, 0.12);
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(253, 244, 233, 0.45);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* ==================================================
   RESPONSIVE
   ================================================== */
@media (max-width: 1024px) {
    .hero-food-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-food-mosaic {
        grid-template-columns: 1.5fr 1fr;
        max-width: 700px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

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

    .feature-item:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .block-inner {
        grid-template-columns: 1fr;
    }

    .block-title {
        font-size: clamp(2.5rem, 9vw, 5rem);
    }

    .block-label {
        margin-bottom: 0;
    }

    .testimonials-grid {
        grid-column: 1;
        grid-template-columns: 1fr;
    }

    .testi-big {
        grid-column: 1;
        grid-row: auto;
        transform: none;
    }

    .testi-rating-card {
        grid-column: 1;
        transform: none;
    }

    .testi-small {
        grid-column: 1;
        transform: none;
    }

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

    .feature-item:last-child {
        grid-column: 1;
    }

    .products-layout {
        grid-template-columns: 1fr;
    }

    .hero-food .seal-wrapper {
        width: 90px;
        height: 90px;
        bottom: -15px;
        right: -15px;
    }

    .hero-food .seal-svg {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 640px) {
    /* ── Hero : centré, padding navbar compensé ─── */
    .hero-food {
        padding: 5.5rem 1.2rem 2.5rem;
        min-height: auto;
        text-align: center;
    }

    /* FONIO pleine largeur */
    .hero-food-title {
        font-size: clamp(5rem, 28vw, 9rem);
        line-height: 0.82;
        letter-spacing: -0.04em;
    }

    /* Sous-titre centré */
    .hero-food-subtitle {
        font-size: clamp(1.4rem, 7vw, 2.4rem);
    }

    /* Eyebrow centré */
    .hero-food .eyebrow {
        margin: 0 auto;
    }

    /* Description centrée */
    .hero-food-desc {
        text-align: center;
    }

    .hero-food-desc strong {
        text-align: center;
    }

    /* Badges centrés */
    .trust-row {
        justify-content: center;
    }

    /* Mosaic caché sur mobile */
    .hero-food-mosaic {
        display: none;
    }

    /* Form title centré */
    .hero-form-inline .form-pre-title {
        text-align: center;
    }

    /* Formulaire : colonne, champ et bouton même largeur */
    .hero-form-inline .form-row {
        flex-direction: column;
        align-items: stretch;
    }

    /* Wrapper Brevo + input + bouton : tous pleine largeur */
    .hero-form-inline .sib-input,
    .hero-form-inline .sib-form-block,
    .hero-form-inline .form__entry,
    .hero-form-inline .entry__field,
    .hero-form-inline .email-input,
    .hero-form-inline .btn-hero {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .marquee-inner {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .footer-headline {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .btn-hero {
        font-size: 1rem;
        padding: 0.95rem 1.8rem;
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    .ticker-track,
    .marquee-inner {
        animation: none;
    }

    .seal-svg {
        animation: none !important;
    }

    .reveal {
        transition: opacity 0.4s ease;
        transform: none;
    }
}

@media (hover: none) and (pointer: coarse) {
    [data-speed] {
        will-change: auto;
        transform: none !important;
    }
}

/* ==============================================
   CONSOLIDATED TYPOGRAPHY & UX HARMONIZATION
   ============================================== */

/* Hero content layout */
.hero-food-content {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

/* Hero description — final unified values */
.hero-food-desc {
    font-size: 1.25rem;
    line-height: 1.65;
    margin: 0;
}

.hero-food-desc strong {
    display: block;
    margin-top: 0.65rem;
    font-size: 1.2em;
    line-height: 1.35;
}

/* Trust row — unified spacing */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 0.4rem;
    margin-bottom: 0.8rem;
}

/* Hero badges — final unified sizing */
.hero-badge {
    font-size: 0.9rem;
    padding: 0.55rem 1.1rem;
    line-height: 1;
    letter-spacing: 0.05em;
}

/* Hero form */
.hero-form-inline {
    margin-top: 0.8rem;
}

/* Form pre-title inside hero — white color for orange bg */
.hero-food .form-pre-title {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--color-bg);
}

/* Hero form row */
.hero-form-inline .form-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Email input — unified sizing */
.email-input {
    min-height: 64px;
    padding: 0 1.8rem;
    font-size: 0.95rem;
}

/* Hero button — unified sizing */
.btn-hero {
    min-height: 64px;
    padding: 0 2rem;
    font-size: 1.1rem;
}

/* Form hint inside hero — translucent for dark bg */
.hero-food .form-hint {
    margin-top: 0.75rem;
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Balanced hero button width */
.hero-form-inline .btn-hero {
    min-width: 225px;
    justify-content: center;
}

/* Fonio story text container */
.fonio-story-text {
    gap: 2.2rem;
    max-width: 720px;
}

/* Fonio CTA button — margin top for breathing room */
.fonio-punch .btn-cta {
    margin-top: 2rem;
}

/* Promise strip descriptions — unified */
.promise-strip-desc {
    font-size: 1.25rem;
    line-height: 1.65;
    opacity: 0.72;
}

/* Promise strip tags — unified sizing */
.promise-strip-tag {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    padding: 0.55rem 1.25rem;
    opacity: 0.8;
}

/* FAQ kicker — harmonized with all other kickers */
.faq-kicker {
    font-family: var(--font);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-orange);
    display: block;
    margin-bottom: 0.5rem;
    transform: none;
}

/* FAQ title */
.faq-title {
    font-size: var(--font-size-h2);
    font-weight: 900;
    color: var(--color-text);
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

/* FAQ question text */
.faq-question {
    font-size: 1.25rem;
}

/* FAQ answer text */
.faq-answer p {
    font-size: 1.25rem;
    line-height: 1.7;
}

/* Product description — unified */
.prod-subline,
.prod-desc {
    font-size: 1.25rem;
    line-height: 1.75;
}

/* Product pills — unified */
.prod-pills span {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.1rem;
}

/* Product fact numbers */
.prod-fact strong {
    font-size: 1.3rem;
}

/* Product fact labels */
.prod-fact span {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    opacity: 0.6;
}

/* Product recipe card labels */
.prod-recipe-card strong {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

/* Product recipe card description */
.prod-recipe-card span {
    font-size: 1.25rem;
}

/* Badges in product/image areas */
.prod-split-badge,
.mosaic-label,
.recipe-tag {
    font-size: 0.65rem;
}

/* Founders image caption */
.founders-img-caption {
    font-size: 0.65rem;
    padding: 0.45rem 0.95rem;
}

/* Founders bio header */
.founders-bio-header strong {
    font-size: 1.25rem;
}

.founders-bio-header span {
    font-size: 1.1rem;
}

/* Founders bio text + manifesto */
.founders-bio>p,
.founders-manifesto {
    font-size: 1.25rem;
    line-height: 1.75;
}

/* Footer subtitle */
.footer-sub {
    font-size: 1.25rem;
    line-height: 1.75;
}

/* Footer bar */
.footer-bar {
    font-size: 1.25rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(253, 244, 233, 0.08);
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: rgba(253, 244, 233, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: rgba(253, 244, 233, 0.8);
}

/* Fonio intro blocks */
.fonio-intro-blocks {
    font-size: 1.25rem;
}

/* Fonio product description */
.fonio-product-desc {
    font-size: 1.3rem;
}

/* Fonio punch */
.fonio-punch p {
    font-size: 1.8rem;
}

/* Ticker — unified */
.ticker-bar {
    font-size: 0.95rem;
    padding: 0.75rem 0;
}

/* ==================================================
   RESPONSIVE — Consolidated Mobile Overrides
   ================================================== */
@media (max-width: 768px) {

    .founders-bio>p,
    .founders-manifesto,
    .footer-sub,
    .prod-desc,
    .prod-subline {
        font-size: 1.15rem;
    }

    .fonio-intro-blocks {
        font-size: 1.15rem;
    }

    .fonio-vis-vertical {
        aspect-ratio: 5 / 3;
    }

    .fonio-product-desc {
        font-size: 1.2rem;
    }

    .fonio-punch p {
        font-size: 1.35rem;
    }

    .promise-strip-desc {
        font-size: 1.15rem;
    }

    .faq-question {
        font-size: 1.15rem;
    }

    .faq-answer p {
        font-size: 1.1rem;
    }

    .prod-fact span {
        font-size: 0.95rem;
    }

    .prod-recipe-card strong {
        font-size: 0.95rem;
    }

    .prod-recipe-card span {
        font-size: 1.15rem;
    }

    .prod-pills span {
        font-size: 0.95rem;
    }

    .founders-bio-header strong {
        font-size: 1.15rem;
    }

    .founders-bio-header span {
        font-size: 0.95rem;
    }

    .footer-eyebrow {
        font-size: 0.95rem;
    }

    .footer-bar {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .hero-food-content {
        gap: 1.1rem;
    }

    .hero-food-desc {
        font-size: 1.1rem;
    }

    .hero-food-desc strong {
        margin-top: 0.5rem;
        font-size: 1.12em;
    }

    .trust-row {
        gap: 0.7rem;
        margin-bottom: 0.6rem;
    }

    .hero-badge {
        font-size: 0.82rem;
        padding: 0.5rem 1rem;
    }

    .hero-food .form-pre-title {
        font-size: 0.95rem;
        margin-bottom: 0.85rem;
    }

    .hero-form-inline .form-row {
        gap: 0.8rem;
    }

    .email-input,
    .btn-hero {
        min-height: 56px;
        font-size: 1rem;
    }

    .email-input {
        padding: 0 1.4rem;
    }

    .btn-hero {
        padding: 0 1.6rem;
    }

    .hero-food .form-hint {
        font-size: 0.9rem;
        margin-top: 0.7rem;
    }
}

/* ==================================================
   BREVO FORM INTEGRATION OVERRIDES
   ================================================== */
/* Override Brevo defaults to keep the native premium landing page design */
.hero-form-inline .sib-form {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    text-align: left !important;
    font-family: inherit !important;
}

.hero-form-inline #sib-form-container {
    padding: 0 !important;
    background: transparent !important;
}

.hero-form-inline #sib-container {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    box-shadow: none !important;
    direction: ltr !important;
    text-align: left !important;
}

.hero-form-inline #sib-form {
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-form-inline .sib-form-block {
    padding: 0 !important;
    margin: 0 !important;
}

.hero-form-inline .form__entry {
    margin-top: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

.hero-form-inline .form__label-row {
    margin: 0 !important;
    padding: 0 !important;
}

.hero-form-inline .entry__field {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    box-shadow: none !important;
    flex: 1 !important;
}

.hero-form-inline .entry__field:focus-within {
    box-shadow: none !important;
}

/* Make sure the input looks like the original email input */
.hero-form-inline .email-input {
    width: 100% !important;
    height: auto !important;
    line-height: inherit !important;
    padding: 1rem 1.4rem !important;
    border-radius: 100px !important;
    font-family: var(--font) !important;
    font-size: 0.95rem !important;
    outline: none !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    color: var(--color-text) !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.hero-form-inline .email-input:focus {
    border-color: var(--color-orange) !important;
    box-shadow: 0 0 0 3px rgba(236, 102, 55, 0.15) !important;
}

/* Keep arrow icon and loader in button aligned */
.hero-form-inline .btn-hero {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: clamp(1rem, 2.5vw, 1.25rem) clamp(2rem, 4vw, 2.5rem) !important;
    border-radius: 100px !important;
    font-family: var(--font) !important;
    font-weight: 800 !important;
    font-size: clamp(1.05rem, 2vw, 1.25rem) !important;
    text-decoration: none !important;
    cursor: pointer !important;
    border: none !important;
    white-space: nowrap !important;
    background: var(--color-text) !important;
    color: var(--color-bg) !important;
    box-shadow: 0 8px 24px rgba(62, 42, 26, 0.3) !important;
    transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease, background 0.2s ease !important;
    height: auto !important;
    overflow-wrap: normal !important;
    line-height: normal !important;
}

.hero-form-inline .btn-hero:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 16px 36px rgba(62, 42, 26, 0.4) !important;
    background: var(--color-bordeaux) !important;
    color: white !important;
}

/* Hide native check input */
.hero-form-inline .input--hidden {
    display: none !important;
}

/* Custom error message styling for Brevo validations */
.hero-form-inline .entry__error--primary {
    display: none;
    width: 100% !important;
    max-width: 100% !important;
    font-family: var(--font) !important;
    font-size: 0.85rem !important;
    text-align: left !important;
    color: #ffeded !important;
    background-color: var(--color-bordeaux) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 0.6rem 1rem !important;
    margin-top: 0.5rem !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
}

/* Messages panels overrides (Success & General Errors) */
.hero-form-inline .sib-form-message-panel {
    border-radius: var(--radius-card) !important;
    padding: 1.25rem 1.5rem !important;
    font-weight: 800 !important;
    font-size: 1.05rem !important;
    text-align: center !important;
    font-family: var(--font) !important;
    margin-bottom: 1rem !important;
    border: none !important;
    box-shadow: 0 12px 32px rgba(62, 42, 26, 0.15) !important;
    box-sizing: border-box !important;
}

.hero-form-inline .sib-form-message-panel__text {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0.75rem !important;
}

.hero-form-inline #success-message {
    background: var(--color-bleu-ciel) !important;
    color: var(--color-text) !important;
}

.hero-form-inline #error-message {
    background: #ffeded !important;
    color: #661d1d !important;
}

.hero-form-inline .sib-icon {
    width: 24px !important;
    height: 24px !important;
    fill: currentColor !important;
    flex-shrink: 0 !important;
}

/* Responsive configurations for the form items */
@media (max-width: 640px) {
    .hero-form-inline .email-input {
        min-height: 56px !important;
        padding: 0 1.4rem !important;
    }
    .hero-form-inline .btn-hero {
        min-height: 56px !important;
        padding: 0 1.6rem !important;
        width: 100% !important;
    }
}

/* Spinner rotation animation for the Brevo submit button loader */
@keyframes sib-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-form-inline .progress-indicator__icon:not(.sib-hide-loader-icon) {
    display: inline-block !important;
    animation: sib-spin 1s linear infinite !important;
}

/* ==================================================
   RESPONSIVE MOBILE-FIRST — COMPREHENSIVE FIX
   ================================================== */

/* Empêcher le scroll horizontal sur tout le document */
html {
    overflow-x: hidden;
}

/* ── Tablette (≤ 900px) ─────────────────────────── */
@media (max-width: 900px) {
    body {
        font-size: 1.2rem;
    }

    .nav-inner {
        padding: 0 var(--gutter);
        gap: 1.25rem;
    }
    .logo-img {
        height: 58px !important;
    }
    .btn-pill {
        font-size: 0.9rem;
        padding: 0.65rem 1.4rem;
    }

    /* Founders — image moins haute */
    .founders-img-frame {
        height: clamp(280px, 50vw, 460px);
    }

    /* Product panels */
    .prod-split-text {
        padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
        gap: 1.25rem;
    }

    /* Universe headline */
    .universe-title {
        font-size: clamp(2rem, 6vw, 4rem);
    }
}

/* ── Mobile (≤ 600px) ─────────────────────────── */
@media (max-width: 600px) {
    body {
        font-size: 1rem;
    }

    /* Navbar */
    .nav-inner {
        padding: 0 1rem;
        gap: 0.75rem;
    }
    .logo-img {
        height: 48px !important;
    }
    .btn-pill {
        font-size: 0.82rem;
        padding: 0.55rem 1rem;
        white-space: nowrap;
    }

    /* Hero */
    .hero-food {
        /* padding-top élevé pour ne pas clipper le haut du titre (line-height < 1) */
        padding: 2.75rem 1rem 2rem;
    }
    .hero-food-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    /* Cache la mosaïque sur petit mobile — trop lourde visuellement */
    .hero-food-mosaic {
        display: none;
    }
    /* Bouton hero : pas de min-width bloquant */
    .hero-form-inline .btn-hero {
        min-width: unset !important;
        width: 100%;
    }

    /* Marquee */
    .marquee-inner {
        font-size: clamp(1.2rem, 5vw, 2rem);
    }

    /* Promise strips */
    /* Header "Pourquoi choisir le fonio" centré */
    .promises-strips-header {
        text-align: center;
        align-items: center;
    }

    .promise-strip {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
        text-align: center;
        justify-items: center;
    }
    .promise-strip-headline {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
    .promise-strip-tag {
        font-size: 0.68rem;
        padding: 0.4rem 0.9rem;
        align-self: center;
        justify-self: center;
    }

    /* Products */
    .prod-split {
        min-height: unset;
    }
    .prod-split-text {
        padding: 1.75rem 1.25rem;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }
    /* prod-name hérite de --font-size-h2 via :root mobile */
    .prod-tags,
    .prod-pills {
        justify-content: center;
    }
    .prod-facts {
        flex-wrap: wrap;
        justify-content: center;
    }
    .prod-fact {
        flex: 1 1 45%;
        text-align: center;
    }
    .btn-preorder {
        width: 100%;
        justify-content: center;
        display: flex;
    }

    /* Founders */
    .founders-section {
        padding: 2rem 1rem;
    }
    .founders-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .founders-img-frame {
        height: clamp(220px, 75vw, 360px);
        border-radius: 20px;
    }
    .founders-text {
        padding: 1.25rem 0.75rem;
        gap: 1.25rem;
    }
    /* --font-size-h2 géré via :root ci-dessous */

    /* Universe grid */
    .universe-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .universe-card {
        min-height: 240px;
    }

    /* FAQ */
    /* --font-size-h2 géré via :root */
    .faq-section {
        padding: 3rem 1.25rem;
    }

    /* Newsletter */
    .hero-form-inline .form-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Footer */
    .footer-bar {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }
    .footer-legal-links {
        gap: 0.6rem 1rem;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .footer-legal-links a {
        font-size: 0.9rem;
        color: rgba(253, 244, 233, 0.65);
    }
    .footer-social {
        margin-left: auto;
    }

    /* Legal pages */
    .legal-page {
        padding: 4rem 1.25rem 3rem;
    }
}

/* ── Petit mobile (≤ 380px) ─────────────────────── */
@media (max-width: 380px) {
    .logo-img {
        height: 42px !important;
    }
    .btn-pill {
        font-size: 0.78rem;
        padding: 0.5rem 0.85rem;
    }
    /* Réduire encore le titre pour les écrans < 380px */
    .hero-food-title {
        font-size: clamp(1.9rem, 9.5vw, 2.5rem);
        line-height: 0.93;
    }
    .hero-food {
        padding: 2.5rem 0.9rem 1.75rem;
    }
}

/* ==================================================
   RESPONSIVE FIXES — Ajouts correctifs
   ================================================== */

/* ── H2 — taille unifiée mobile ──────────────────── */
@media (max-width: 640px) {
    :root {
        --font-size-h2: clamp(2.2rem, 10vw, 4rem);
    }
}

/* ── Navbar fixe : padding-top tablet ─── */
@media (max-width: 900px) {
    .hero-food {
        padding-top: clamp(5rem, 10vw, 6.5rem);
    }
}

/* ── Boutons "Être notifié" — centré mobile ──────── */
@media (max-width: 640px) {
    .btn-preorder {
        align-self: center;
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
    }
}

/* ── Prod anchors — mobile ────────────────────────── */
@media (max-width: 600px) {
    .prod-anchors {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .btn-prod-anchor {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
        display: flex;
    }
}

/* ── Fonio story — colonne unique mobile ─────────── */
@media (max-width: 768px) {
    .fonio-story-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .fonio-story-visuals {
        order: -1;
    }

    /* Centrage du bloc texte */
    .fonio-story-text,
    .fonio-title,
    .fonio-kicker,
    .fonio-intro-blocks,
    .fonio-badges,
    .fonio-punch,
    .fonio-mission {
        text-align: center;
    }

    .fonio-badges {
        justify-content: center;
    }

    .fonio-punch .btn-cta {
        align-self: center;
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
    }
}

/* ── Founders — fix colonnes mobile ──────────────── */
@media (max-width: 768px) {
    .founders-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ── Footer headline — capping mobile ─────────────── */
@media (max-width: 640px) {
    .footer-headline {
        font-size: clamp(1.8rem, 9vw, 3.5rem);
        line-height: 1;
    }

    .footer-headline em {
        font-size: 1em;
    }
}

/* ── Trust row mobile — wrap propre ──────────────── */
@media (max-width: 480px) {
    .trust-row {
        gap: 0.5rem;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 0.4rem 0.8rem;
    }
}
