/* ──────────────────────────────────────────────────────────────────────────
   Mockup template — BG Studio
   Palette adaptable par CSS var, branding cohérent
   ────────────────────────────────────────────────────────────────────────── */

:root {
    --cream:        #f9f4e8;
    --cream-deep:   #f1ecdb;
    --paper:        #ffffff;
    --ink:          #141414;
    --ink-soft:     #383838;
    --ink-mute:     #6b6b6b;
    --black:        #0a0a0a;
    --accent:       #c6f962;       /* signature BG Studio — modifiable par secteur */
    --accent-dark:  #8db538;
    --accent-deep:  #17312f;
    --border:       rgba(20,20,20,0.08);
    --shadow-sm:    0 1px 2px rgba(0,0,0,0.04), 0 1px 0 rgba(0,0,0,0.02);
    --shadow-md:    0 4px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-lg:    0 12px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    --radius-sm:    6px;
    --radius:       10px;
    --radius-lg:    16px;
    --ff-display:   'Space Grotesk', -apple-system, system-ui, sans-serif;
    --ff-body:      'Inter', -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius);
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
    cursor: pointer;
    border: 1.5px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--ink);
    color: var(--accent);
    border-color: var(--ink);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--ink);
    border-color: var(--ink);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--accent);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* ── Nav ─────────────────────────────────────────────────────────────────── */

.nav {
    position: sticky;
    top: 0;
    background: rgba(249, 244, 232, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.nav-inner {
    /* Override .container : pas de max-width pour laisser respirer la nav */
    max-width: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 36px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-text { white-space: nowrap; }

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--ink);
    color: var(--accent);
    border-radius: 8px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
}

.logo-mark-sm { width: 28px; height: 28px; font-size: 0.8rem; }

/* Real logo image (extrait du site prospect) */
.logo-img {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.logo-img-sm {
    height: 26px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 22px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-soft);
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links > a,
.nav-links .nav-cat-trigger {
    white-space: nowrap;     /* libellés sur 1 ligne, jamais wrap */
}

.nav-links > a:hover { color: var(--ink); }

.nav-cta { font-size: 0.9rem; padding: 10px 18px; }

/* ── Dropdown menus e-commerce ──────────────────────────────────────────── */

.nav-cat {
    position: relative;
}

.nav-cat-trigger {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    color: var(--ink-soft);
    transition: color 0.15s ease;
    font-weight: 500;
    background: none;
    border: none;
    font-size: inherit;
    font-family: inherit;
}

.nav-cat-trigger::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.nav-cat:hover .nav-cat-trigger,
.nav-cat:focus-within .nav-cat-trigger {
    color: var(--ink);
}

.nav-cat:hover .nav-cat-trigger::after,
.nav-cat:focus-within .nav-cat-trigger::after {
    transform: rotate(180deg);
}

.nav-cat-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -16px;
    min-width: 220px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
    z-index: 99;
}

.nav-cat:hover .nav-cat-menu,
.nav-cat:focus-within .nav-cat-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Petit "pont" invisible pour que le hover ne saute pas */
.nav-cat-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-cat-menu a {
    display: block;
    padding: 8px 18px;
    font-size: 0.88rem;
    color: var(--ink-soft);
    font-weight: 500;
    transition: background 0.12s ease, color 0.12s ease;
}

.nav-cat-menu a:hover {
    background: var(--cream-deep);
    color: var(--accent-deep);
}

.nav-cat-menu .menu-cat-head {
    padding: 6px 18px 10px;
    color: var(--ink);
    font-family: var(--ff-display);
    font-size: 0.95rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

/* ── Cart icon ─────────────────────────────────────────────────────────── */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-cart {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    padding: 8px;
    border-radius: var(--radius);
    transition: background 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-cart:hover {
    background: var(--cream-deep);
}

.nav-cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: var(--ink);
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cream);
    font-family: var(--ff-display);
    letter-spacing: -0.02em;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero {
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ── Variante hero avec photo background ────────────────────────────────── */

.hero--has-photo {
    padding: 130px 0 110px;
    color: white;
    background: var(--ink);
}

.hero--has-photo .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero--has-photo .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.55;
}

.hero--has-photo .hero-bg::after {
    /* Dégradé bottom-up + côté gauche pour booster lisibilité texte */
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(10, 10, 10, 0.85) 0%,
            rgba(10, 10, 10, 0.55) 45%,
            rgba(10, 10, 10, 0.15) 100%
        );
}

.hero--has-photo .hero-kicker {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent);
    backdrop-filter: blur(4px);
}

.hero--has-photo .hero-title {
    color: white;
}

.hero--has-photo .hero-title mark {
    background: var(--accent);
    color: var(--ink);
}

.hero--has-photo .hero-sub {
    color: rgba(255, 255, 255, 0.85);
}

.hero--has-photo .btn-ghost {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero--has-photo .btn-ghost:hover {
    background: white;
    color: var(--ink);
    border-color: white;
}

/* La hero-card stats devient un overlay flottant en bas-droit, plus compact */
.hero--has-photo .hero-visual {
    display: flex;
    align-items: flex-end;
}

.hero--has-photo .hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    aspect-ratio: unset;
    padding: 22px 26px;
    width: 100%;
}

.hero--has-photo .hero-card::before,
.hero--has-photo .hero-card::after { display: none; }

.hero--has-photo .hero-card-dot {
    position: relative;
    top: 0; left: 0;
    margin-bottom: 12px;
}

.hero--has-photo .hero-stat b { font-size: 2rem; }

.hero-kicker {
    display: inline-block;
    font-family: var(--ff-display);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-deep);
    background: var(--accent);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 22px;
}

.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 22px;
}

.hero-title mark {
    background: var(--accent);
    color: var(--ink);
    padding: 0 8px;
    border-radius: 6px;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--ink);
    color: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 220px;
    height: 220px;
    background: var(--accent);
    opacity: 0.12;
    border-radius: 50%;
}

.hero-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 180px;
    height: 180px;
    background: var(--accent);
    opacity: 0.06;
    border-radius: 50%;
}

.hero-card-dot {
    position: absolute;
    top: 28px;
    left: 28px;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(198, 249, 98, 0.2);
}

.hero-card-label {
    font-family: var(--ff-display);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.hero-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.hero-stat b {
    display: block;
    font-family: var(--ff-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ── Catégorie : hero compact + breadcrumb ──────────────────────────────── */

.cat-hero {
    padding: 80px 0 50px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
    border-bottom: 1px solid var(--border);
}

.cat-hero-inner {
    max-width: 900px;
}

.breadcrumb {
    font-family: var(--ff-display);
    font-size: 0.85rem;
    color: var(--ink-mute);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--ink-soft);
    border-bottom: 1px dotted var(--ink-mute);
    padding-bottom: 1px;
}

.breadcrumb a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.breadcrumb-sep {
    margin: 0 10px;
    color: var(--ink-mute);
}

.cat-hero-title {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: var(--ink);
    margin: 12px 0 14px;
}

.cat-hero-sub {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 640px;
}

.cat-items {
    padding: 64px 0;
    background: var(--cream);
}

.cat-expertise {
    padding: 80px 0;
    background: var(--paper);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cat-expertise-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.cat-expertise-inner .section-title { margin-bottom: 16px; }

.cat-expertise-inner p {
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 14px;
}

.cat-expertise-card {
    background: var(--ink);
    color: white;
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cat-expertise-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: var(--accent);
    opacity: 0.12;
    border-radius: 50%;
}

.cat-expertise-card-num {
    font-family: var(--ff-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.cat-expertise-card-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.45;
    position: relative;
    z-index: 1;
}

.cat-cta {
    padding: 70px 0;
    background: var(--cream-deep);
}

.cat-cta-card {
    padding: 48px 40px;
}

.cat-cta-card .contact-title {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
}

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

/* ── Trust bar ───────────────────────────────────────────────────────────── */

.trust {
    background: var(--paper);
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-label {
    font-family: var(--ff-display);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
    text-align: center;
    margin-bottom: 28px;
    font-weight: 600;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-point {
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid var(--border);
}

.trust-point:last-child { border-right: none; }

.trust-point b {
    display: block;
    font-family: var(--ff-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.04em;
}

.trust-point span {
    font-size: 0.9rem;
    color: var(--ink-soft);
}

/* ── Sections génériques ─────────────────────────────────────────────────── */

.services, .why-us, .about {
    padding: 100px 0;
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.section-kicker {
    font-family: var(--ff-display);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-deep);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* ── Services grid ───────────────────────────────────────────────────────── */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: var(--ink);
    border-radius: 14px;
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.25;
}

.service-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ── Why-us grid ─────────────────────────────────────────────────────────── */

.why-us {
    background: var(--ink);
    color: white;
}

.why-us .section-kicker { color: var(--accent); }
.why-us .section-title { color: white; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.why-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card-num {
    font-family: var(--ff-display);
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.why-card h3 {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.why-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ── About ───────────────────────────────────────────────────────────────── */

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-head {
    text-align: left;
    margin: 0 0 32px;
}

.about-text .section-head { max-width: none; }

.about-text p {
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-visual { position: relative; }

.about-photo {
    aspect-ratio: 4 / 5;
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--accent) 30%, var(--cream-deep)),
            var(--cream-deep)
        );
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-photo > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(20,20,20,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20,20,20,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

.about-photo-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--paper);
    padding: 18px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.about-photo-label {
    font-family: var(--ff-display);
    font-weight: 500;
    color: var(--ink);
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

/* ── Contact ─────────────────────────────────────────────────────────────── */

.contact {
    padding: 100px 0;
}

.contact-card {
    background: var(--ink);
    color: white;
    border-radius: var(--radius-lg);
    padding: 64px 56px;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: var(--accent);
    opacity: 0.08;
    border-radius: 50%;
}

.contact-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--ink);
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--ff-display);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.contact-body {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.contact-info-item {
    padding: 16px 0;
}

.contact-info-item b {
    display: block;
    font-family: var(--ff-display);
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-info-item span {
    color: white;
    font-size: 0.95rem;
}

.contact .btn-primary {
    background: var(--accent);
    color: var(--ink);
    border-color: var(--accent);
}

.contact .btn-primary:hover {
    background: white;
    border-color: white;
}

/* ── Section produits phares (e-commerce démo) ─────────────────────────── */

.products {
    padding: 100px 0;
    background: var(--cream-deep);
}

.products-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.products-head .section-title { margin-bottom: 10px; }

.products-head .section-sub { max-width: 540px; }

.products-cta-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-deep);
    font-family: var(--ff-display);
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1.5px solid var(--accent);
    padding-bottom: 2px;
}

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

.product-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-thumb {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.4rem;
    color: var(--accent-deep);
    position: relative;
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--ink);
    font-family: var(--ff-display);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 999px;
}

.product-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-cat {
    font-family: var(--ff-display);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
    font-weight: 600;
}

.product-name {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
}

.product-price {
    font-family: var(--ff-display);
    font-weight: 700;
    color: var(--accent-deep);
    font-size: 0.95rem;
}

.product-add {
    background: var(--ink);
    color: var(--accent);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.product-add:hover { background: var(--accent); color: var(--ink); }

.product-add svg { width: 18px; height: 18px; }

/* ── Footer enrichi (sitemap visible — SEO) ────────────────────────────── */

.footer-rich {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
    font-size: 0.9rem;
}

.footer-sitemap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 36px 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cat h4 {
    font-family: var(--ff-display);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-cat ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-cat li {
    margin-bottom: 9px;
}

.footer-cat a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    transition: color 0.15s ease;
}

.footer-cat a:hover { color: var(--accent); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-rich .footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
}

.footer-brand-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.footer-brand-meta strong {
    font-family: var(--ff-display);
    color: white;
    font-weight: 600;
}

.footer-brand-meta span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-rich .footer-credit {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.footer-rich .footer-credit a {
    color: var(--accent);
    border-bottom: 1px dotted var(--accent);
}

.footer-rich .footer-credit a:hover {
    color: white;
    border-bottom-color: white;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

.footer {
    padding: 32px 0;
    background: var(--cream-deep);
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--ink-mute);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-display);
    font-weight: 600;
    color: var(--ink);
}

.footer-meta {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-credit a {
    color: var(--ink-soft);
    border-bottom: 1px dotted var(--ink-mute);
}

.footer-credit a:hover { color: var(--accent-deep); }

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
    .nav-links { display: none; }
    .hero-inner, .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual { order: -1; }
    .hero-card { aspect-ratio: 16/9; }
    .trust-points {
        grid-template-columns: 1fr 1fr;
        gap: 24px 0;
    }
    .trust-point:nth-child(2) { border-right: none; }
    .contact-card { padding: 48px 28px; }
    .contact-info { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
    .services, .why-us, .about, .contact { padding: 64px 0; }
    .hero { padding: 60px 0; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
}
