/*
Theme Name: Camperko
Version: 2.1.0
Description: Thème standalone pour Camperko — palette Route & Horizon
*/

/* ─── Variables ───────────────────────────────────────────── */
:root {
    --navy:       #1C3B5A;
    --navy-2:     #2A547F;
    --navy-3:     #3A6E9F;
    --navy-deep:  #0E2237;
    --teal:       #2E86AB;
    --amber:      #F4A24A;
    --amber-2:    #E8893A;
    --coral:      #E8603A;
    --coral-2:    #C94E2B;
    --coral-3:    #F0854A;
    --sand:       #F7F2E9;
    --sand-2:     #EDE5D7;
    --sand-3:     #E0D5C4;
    --cream:      #FDFAF6;
    --dark:       #0E2237;
    --mid:        #52677A;
    --soft:       #8BA0B2;
    --border:     #D5CDBE;
    --white:      #FDFCFB;

    /* RGB */
    --navy-rgb:      28, 59, 90;
    --navy-deep-rgb: 14, 34, 55;
    --coral-rgb:     232, 96, 58;
    --amber-rgb:     244, 162, 74;
    --sand-rgb:      247, 242, 233;
    --white-rgb:     253, 252, 251;

    /* CTA gradient */
    --cta:       linear-gradient(135deg, var(--coral-3) 0%, var(--coral) 52%, var(--coral-2) 100%);
    --cta-hover: linear-gradient(135deg, #E87A50 0%, #D25530 52%, #B84425 100%);

}

/* ─── Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'DM Sans', system-ui, -apple-system, sans-serif; background: #fff; color: var(--mid); -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4 { font-family: 'Sora', system-ui, sans-serif; line-height: 1.15; color: var(--navy-deep); margin: 0; }
p { font-family: 'DM Sans', system-ui, sans-serif; }
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }
a[href], button, summary { cursor: pointer !important; }

/* ─── Header ──────────────────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: box-shadow .3s;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(var(--navy-deep-rgb), .5); }

.header-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    height: 78px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    transition: height .3s ease;
}
.site-header.is-scrolled .header-inner { height: 58px; }

.header-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; display: block; transition: height .3s ease; }
.site-header.is-scrolled .logo-img { height: 30px; }

.site-nav { display: flex; align-items: center; gap: 6px; }
.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-link { display: block; padding: 6px 12px; font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.68); text-decoration: none; border-radius: 6px; transition: color .2s, background .2s; }
.nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-badge { display: inline-block; background: var(--amber); color: var(--navy-deep); font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 2px 5px; border-radius: 3px; margin-left: 4px; vertical-align: middle; }
.nav-cta { margin-left: 12px; padding: 8px 18px; background: var(--cta); color: #fff !important; font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 700; border-radius: 6px; text-decoration: none; transition: opacity .2s; box-shadow: 0 4px 14px rgba(var(--coral-rgb), .35); }
.nav-cta:hover { opacity: .88; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; width: 36px; height: 36px; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: rgba(255,255,255,.7); border-radius: 2px; transition: transform .25s, opacity .25s; }

@media (max-width: 820px) {
    .nav-toggle { display: flex; }
    .site-nav { display: none; position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,.06); padding: 16px 24px 24px; gap: 4px; box-shadow: 0 14px 30px rgba(0,0,0,.3); transition: top .3s ease; }
    .site-header.is-scrolled .site-nav { top: 58px; }
    .site-nav.is-open { display: flex; }
    .nav-list { flex-direction: column; gap: 2px; width: 100%; }
    .nav-link { font-size: .9rem; padding: 10px 14px; }
    .nav-cta { margin: 12px 0 0; text-align: center; padding: 12px 20px; }
}

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.55); font-family: 'DM Sans', sans-serif; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 64px 32px 40px; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand-name { font-family: 'Sora', system-ui, sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; display: block; margin-bottom: 12px; }
.footer-tagline { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.38); margin: 0; max-width: 280px; }
.footer-col-title { font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.3); margin: 0 0 14px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.52); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 18px 32px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-legal { font-size: .74rem; color: rgba(255,255,255,.25); margin: 0; max-width: 560px; line-height: 1.6; }
.footer-legal strong { color: rgba(255,255,255,.35); font-weight: 500; }
.footer-copy { font-size: .74rem; color: rgba(255,255,255,.2); margin: 0; white-space: nowrap; }

@media (max-width: 820px) {
    .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px 28px; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; padding: 14px 24px; }
}

.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* ─── Wrapper ─────────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px) { .wrap { padding: 0 20px; } }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
    position: relative; margin-top: 0;
    background: var(--dark);
    min-height: 560px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    overflow: hidden; text-align: center;
    padding: 158px 32px 0;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: .32;
    filter: brightness(.85) saturate(1.1);
}
.hero::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse 70% 60% at 20% 50%, rgba(46,134,171,.22) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 80% 30%, rgba(232,96,58,.15) 0%, transparent 55%),
        linear-gradient(to bottom, rgba(14,34,55,.45) 0%, rgba(14,34,55,.2) 60%);
    pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
/* ─── Lucide Icons ────────────────────────────────────────── */
[data-lucide] { display: inline-block; vertical-align: middle; }
.type-card__icon [data-lucide] { width: 22px; height: 22px; stroke: currentColor; }
.proprio-card__icon [data-lucide] { width: 20px; height: 20px; stroke: currentColor; }
.btn-proprio [data-lucide] { width: 18px; height: 18px; stroke: currentColor; flex-shrink: 0; }
.hero h1 { font-family: 'Sora', system-ui, sans-serif; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 1.2rem; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.65); margin: 0 auto 2.2rem; max-width: 560px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.btn-hero-primary { background: var(--cta); color: #fff !important; font-family: 'Sora', system-ui, sans-serif; font-weight: 700; font-size: 1rem; padding: 16px 36px; border-radius: 10px; letter-spacing: .02em; box-shadow: 0 6px 24px rgba(var(--coral-rgb), .4); transition: opacity .2s, transform .2s; text-decoration: none !important; }
.btn-hero-primary:hover { opacity: .92; transform: translateY(-1px); }
.btn-hero-outline { background: rgba(255,255,255,.06); color: rgba(255,255,255,.85) !important; font-family: 'Sora', system-ui, sans-serif; font-weight: 600; font-size: 1rem; padding: 15px 36px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,.2); letter-spacing: .02em; transition: background .2s, border-color .2s; text-decoration: none !important; }
.btn-hero-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); }

/* How it works bar */
.hero-steps {
    position: relative; z-index: 2;
    width: 100%; background: rgba(255,255,255,.04);
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 22px 32px;
    display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
}
.hero-step { display: flex; align-items: center; gap: 14px; padding: 6px 36px; }
.hero-step__icon {
    flex-shrink: 0;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(244,162,74,.13);
    display: flex; align-items: center; justify-content: center;
    color: var(--amber);
}
.hero-step__icon svg { width: 21px; height: 21px; stroke-width: 1.8; }
.hero-step__title { display: block; font-family: 'Sora', system-ui, sans-serif; font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.hero-step__text { font-size: .78rem; color: rgba(255,255,255,.48); line-height: 1.45; max-width: 180px; display: block; }
.hero-steps__sep { color: rgba(255,255,255,.2); flex-shrink: 0; line-height: 1; }
.hero-steps__sep svg { width: 18px; height: 18px; }

@media (max-width: 820px) {
    .hero { padding: 142px 24px 0; }
    .hero-steps { flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 4px; }
    .hero-step { padding: 4px 8px; }
    .hero-steps__sep { display: none; }
}

/* ─── Section head ────────────────────────────────────────── */
.sec-head { margin-bottom: 2.5rem; }
.sec-head h2 { font-family: 'Sora', system-ui, sans-serif; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy-deep); }
.sec-head .sec-sub { font-size: .92rem; color: var(--soft); margin-top: .5rem; }
.sec-head--light h2 { color: var(--sand); }
.sec-head--light .sec-sub { color: rgba(var(--sand-rgb), .55); }

/* ─── Types de CC ─────────────────────────────────────────── */
.sec-types { background: var(--sand); padding: 80px 0; }
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.type-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 12px;
    padding: 28px 24px 24px;
    text-decoration: none !important; color: var(--navy-deep);
    transition: box-shadow .2s, border-color .2s, transform .2s;
    display: flex; flex-direction: column; gap: 12px;
}
.type-card:hover { box-shadow: 0 8px 32px rgba(var(--navy-rgb), .1); border-color: var(--teal); transform: translateY(-2px); color: var(--navy-deep); }
.type-card__img { width: 100%; height: 160px; border-radius: 8px; overflow: hidden; margin-bottom: 4px; }
.type-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; display: block; }
.type-card:hover .type-card__img img { transform: scale(1.05); }
.type-card__name { font-family: 'Sora', system-ui, sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--navy-deep); }
.type-card__desc { font-size: .85rem; color: var(--soft); line-height: 1.6; margin: 0; flex: 1; }
.type-card__price { font-size: .82rem; color: var(--mid); margin: 0; }
.type-card__price strong { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.type-card__link { font-size: .78rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .08em; margin-top: auto; }
.types-all { text-align: center; margin-top: 1.5rem; }
.types-all a { font-size: .9rem; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--border); padding-bottom: 2px; }
.types-all a:hover { color: var(--teal); border-color: var(--teal); }

@media (max-width: 900px) { .types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .types-grid { grid-template-columns: 1fr; } }

/* ─── Plateformes ──────────────────────────────────────────── */
.sec-platforms { background: #0E2237 !important; padding: 80px 0; }
.platforms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: none !important; }
.platforms-grid > * { counter-increment: none !important; }
.platforms-grid > *::before, .platforms-grid > *::after { content: none !important; }
.platform-card {
    background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1);
    border-top: 3px solid rgba(255,255,255,.16);
    border-radius: 14px; padding: 32px 26px 24px;
    display: flex; flex-direction: column; gap: 14px;
    text-decoration: none !important; color: #fff; position: relative;
    transition: background .2s, transform .22s;
}
.platform-card:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); color: #fff; }
.platform-card--featured { border-top-color: var(--amber); background: rgba(244,162,74,.07); }
.platform-card--featured:hover { background: rgba(244,162,74,.11); }
.platform-card__badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--amber); color: #0E2237;
    font-family: 'Sora', system-ui, sans-serif; font-size: .6rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .1em;
    padding: 3px 14px; border-radius: 100px; white-space: nowrap;
}
.platform-card__header { display: flex; flex-direction: column; gap: 6px; }
.platform-card__logo-img { display: flex; align-items: center; background: #fff; border-radius: 6px; padding: 6px 12px; width: fit-content; }
.platform-card__logo-img img { max-height: 28px; max-width: 120px; width: auto; height: auto; object-fit: contain; }
.platform-card__logo-text { font-family: 'Sora', system-ui, sans-serif; font-size: 1.25rem; font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 28px; }
.platform-card__tag { font-size: .63rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.38); }
.platform-card__verdict { font-size: .87rem; line-height: 1.65; color: rgba(255,255,255,.68); flex: 1; }
.platform-card__points { list-style: none; margin: 0; padding: 14px 0 0; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; gap: 8px; }
.platform-card__points li { font-size: .82rem; color: rgba(255,255,255,.6); padding-left: 18px; position: relative; }
.platform-card__points li::before { content: '✓'; position: absolute; left: 0; color: var(--amber); font-weight: 700; }
.platform-card__points li::after { content: none !important; }
.platform-card__cta-wrap { display: flex; flex-direction: column; gap: 8px; margin-top: auto; padding-top: 4px; }
.btn-platform {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    background: linear-gradient(135deg, #F0854A, #E8603A, #C94E2B);
    color: #fff !important; font-family: 'DM Sans', system-ui, sans-serif;
    font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
    padding: 12px 18px; border-radius: 8px; text-decoration: none !important;
    transition: opacity .2s, transform .15s;
}
.btn-platform:hover { opacity: .88; transform: translateY(-1px); color: #fff !important; }
.platform-card__review { text-align: center; font-size: .75rem; color: rgba(255,255,255,.32); text-decoration: none !important; transition: color .2s; }
.platform-card__review:hover { color: rgba(255,255,255,.58); }
.platforms-compare { margin-top: 2.4rem; text-align: center; }
.platforms-compare a { display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.14); padding: 12px 28px; border-radius: 8px; transition: color .2s, border-color .2s; }
.platforms-compare a:hover { color: #fff; border-color: rgba(255,255,255,.35); }

@media (max-width: 900px) { .platforms-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ─── Articles phares (magazine layout) ───────────────────── */
.sec-articles { background: var(--cream); padding: 80px 0; }
.articles-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 16px;
}
.article-card {
    position: relative; border-radius: 12px; overflow: hidden;
    display: block; text-decoration: none !important; color: inherit;
    background: var(--navy);
}
.article-card::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(var(--navy-deep-rgb), 0) 20%, rgba(var(--navy-deep-rgb), .92) 100%);
}
.article-card--featured { grid-row: 1 / 3; }
.article-card-img { position: absolute; inset: 0; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 1.4rem 1.6rem 1.6rem; }
.article-card-tag { display: inline-block; font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--amber); margin-bottom: .6rem; }
.article-card h3 { font-family: 'Sora', system-ui, sans-serif; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: .4rem; }
.article-card--featured h3 { font-size: 1.35rem; }
.article-card--small h3 { font-size: 1rem; }
.article-card p { font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.5; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-card--small p { display: none; }
.articles-see-all { margin-top: 1.5rem; text-align: center; }
.articles-see-all a { font-size: .88rem; font-weight: 600; color: var(--teal); }
.articles-see-all a:hover { color: var(--navy); }

@media (max-width: 820px) {
    .articles-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .article-card { height: 220px; }
    .article-card--featured { grid-row: auto; height: 280px; }
    .article-card--small p { display: -webkit-box; }
}

/* ─── Destinations ────────────────────────────────────────── */
.sec-destinations { background: var(--sand-2); padding: 80px 0; }
.dest-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.dest-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 10px;
    padding: 20px 16px; text-align: center;
    text-decoration: none !important; color: var(--navy-deep);
    transition: box-shadow .2s, border-color .2s, transform .2s;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.dest-card:hover { box-shadow: 0 6px 20px rgba(var(--navy-rgb), .1); border-color: var(--navy-3); transform: translateY(-2px); color: var(--navy-deep); }
.dest-card__flag { font-size: 2rem; line-height: 1; }
.dest-card__name { font-family: 'Sora', system-ui, sans-serif; font-size: .95rem; font-weight: 700; color: var(--navy-deep); }
.dest-card__info { font-size: .75rem; color: var(--soft); line-height: 1.4; }
.dest-card__kvi { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); }
.dest-all { text-align: center; margin-top: 1.5rem; }
.dest-all a { font-size: .9rem; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--border); padding-bottom: 2px; }
.dest-all a:hover { color: var(--teal); border-color: var(--teal); }

@media (max-width: 900px) { .dest-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .dest-strip { grid-template-columns: repeat(2, 1fr); } }

/* ─── Questions pratiques ─────────────────────────────────── */
.sec-qs { background: var(--cream); padding: 80px 0; }
.qs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.q-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 8px;
    padding: 18px 18px 16px;
    text-decoration: none !important; color: inherit;
    transition: box-shadow .2s, border-color .2s;
    display: block;
}
.q-card:hover { box-shadow: 0 6px 20px rgba(var(--navy-rgb), .08); border-color: var(--teal); }
.q-card h3 { font-family: 'Sora', system-ui, sans-serif; font-size: .95rem; font-weight: 700; color: var(--navy-deep); margin-bottom: .3rem; }
.q-card p { font-size: .82rem; color: var(--soft); line-height: 1.55; margin: 0; }

@media (max-width: 1100px) { .qs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .qs-grid { grid-template-columns: 1fr; } }

/* ─── Propriétaires CTA ───────────────────────────────────── */
.sec-proprio {
    background: linear-gradient(135deg, #1C3B5A 0%, #0E2237 100%);
    padding: 80px 0;
    position: relative; overflow: hidden;
}
.sec-proprio::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(244,162,74,.1) 0%, transparent 60%);
    pointer-events: none;
}
.proprio-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.proprio-text h2 { font-family: 'Sora', system-ui, sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: #fff; margin-bottom: 1rem; }
.proprio-text h2 em { font-style: normal; color: var(--amber); }
.proprio-text p { font-size: .97rem; line-height: 1.75; color: rgba(255,255,255,.58); margin: 0; }
.proprio-cards { display: flex; flex-direction: column; gap: 14px; }
.proprio-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px; }
.proprio-card__icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(244,162,74,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--amber); }
.proprio-card__text h4 { font-family: 'Sora', system-ui, sans-serif; font-size: .97rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.proprio-card__text p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.5; margin: 0; }
.proprio-cta { margin-top: 2rem; }
.btn-proprio { display: inline-flex; align-items: center; gap: 8px; background: var(--cta); color: #fff !important; font-family: 'Sora', system-ui, sans-serif; font-weight: 700; font-size: 1rem; padding: 16px 32px; border-radius: 10px; text-decoration: none !important; box-shadow: 0 6px 24px rgba(var(--coral-rgb), .35); transition: opacity .2s; }
.btn-proprio:hover { opacity: .88; color: #fff !important; }

@media (max-width: 820px) {
    .proprio-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── Article page ────────────────────────────────────────── */
.article-page-header {
    position: relative;
    background: var(--navy-deep);
    padding: 142px 0 64px;
    overflow: hidden;
    text-align: center;
}
.article-page-bg {
    position: absolute; inset: 0; z-index: 0;
}
.article-page-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .5;
    filter: blur(4px);
    transform: scale(1.02);
}
.article-page-header::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(var(--navy-deep-rgb),.5) 0%, rgba(var(--navy-deep-rgb),.78) 100%);
    pointer-events: none;
}
.article-page-header__inner {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center;
    max-width: 820px;
}
.article-page-tag { display: inline-block; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--amber); background: rgba(var(--amber-rgb), .12); border: 1px solid rgba(var(--amber-rgb), .2); border-radius: 20px; padding: 4px 12px; margin-bottom: 16px; }
.article-page-header__row { display: flex; align-items: center; justify-content: space-between; gap: 32px; width: 100%; }
.article-page-title { font-family: 'Sora', system-ui, sans-serif; font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; color: #fff; line-height: 1.15; margin: 0; flex: 1; }
.article-page-macaron { flex-shrink: 0; width: 140px; height: 140px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(255,255,255,.25); box-shadow: 0 6px 24px rgba(0,0,0,.35); }
.article-page-macaron img { width: 100%; height: 100%; object-fit: cover; }
.article-page-body { padding: 52px 32px 80px; }
.article-page-content { max-width: 940px; margin: 0 auto; }
.article-page-content h2 { font-family: 'Sora', system-ui, sans-serif; font-size: 1.7rem; font-weight: 700; color: var(--navy); margin: 2.5rem 0 .8rem; padding-bottom: .4rem; border-bottom: 2px solid var(--sand-2); }
.article-page-content h3 { font-family: 'Sora', system-ui, sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--navy-deep); margin: 1.8rem 0 .6rem; }
.article-page-content p { font-size: .97rem; line-height: 1.8; color: var(--mid); margin: 0 0 1.2rem; }
.article-page-content a { color: var(--teal); }
.article-page-content a:hover { color: var(--navy); }
.article-page-content strong { color: var(--navy-deep); font-weight: 600; }

@media (max-width: 820px) {
    .article-page-header { padding: 120px 0 48px; }
    .article-page-body { padding: 36px 24px 60px; }
    .article-page-header__row { flex-direction: column-reverse; gap: 16px; }
    .article-page-title { font-size: 1.8rem; }
    .article-page-macaron { width: 100px; height: 100px; }
}

/* ─── Composants article ──────────────────────────────────── */
.article-intro { background: rgba(var(--navy-rgb), .05); border-left: 4px solid var(--teal); padding: 16px 20px; border-radius: 0 6px 6px 0; font-size: 1.05rem; line-height: 1.65; margin-bottom: 24px; color: var(--navy-deep); }

.sommaire { background: var(--sand); border-left: 4px solid var(--amber); border-radius: 6px; padding: 1.2rem 1.5rem; margin: 2rem 0; display: inline-block; min-width: 280px; max-width: 480px; }
.sommaire__titre { font-weight: 700; font-size: 1rem; margin-bottom: .6rem; color: var(--navy-deep); }
.sommaire ul { margin: 0; padding-left: 1.2rem; list-style: none; }
.sommaire ul li { margin-bottom: .3rem; font-size: .95rem; }
.sommaire ul li a { color: var(--teal); text-decoration: none; }
.sommaire ul li a:hover { text-decoration: underline; }

.info-box { background: rgba(46,134,171,.07); border-left: 4px solid var(--teal); border-radius: 0 6px 6px 0; padding: 1rem 1.4rem; margin: 1.5rem 0; font-size: .97rem; }
.info-box p { margin: 0 0 .5rem; line-height: 1.55; color: var(--navy-deep); }
.info-box p:last-child { margin-bottom: 0; }

.tarifs-table-wrap { overflow-x: auto; margin: 1.6rem 0; border-radius: 8px; border: 1px solid var(--border); }
.tarifs-table { width: 100%; border-collapse: collapse; font-family: 'DM Sans', sans-serif; font-size: .93rem; }
.tarifs-table thead { background: var(--navy); }
.tarifs-table thead th { padding: 14px 18px; text-align: left; font-weight: 600; font-size: .76rem; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .1em; }
.tarifs-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.tarifs-table tbody tr:hover { background: var(--sand); }
.tarifs-table tbody td { padding: 12px 18px; color: var(--mid); }

ul.article-list { padding-left: 0; list-style: none; margin: 16px 0; }
ul.article-list li { padding: 6px 0 6px 24px; position: relative; line-height: 1.55; }
ul.article-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

.faq-block { margin: 2.5rem 0; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-block__item { border-bottom: 1px solid var(--border); }
.faq-block__item:last-child { border-bottom: none; }
.faq-block__question { font-size: .97rem; font-weight: 600; color: var(--navy-deep); padding: .9rem 1.2rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: .5rem; background: var(--white); }
.faq-block__question::-webkit-details-marker { display: none; }
.faq-block__question::after { content: '+'; font-size: 1.3rem; color: var(--coral); flex-shrink: 0; transition: transform .2s; }
.faq-block__item[open] .faq-block__question::after { transform: rotate(45deg); }
.faq-block__answer { padding: .2rem 1.2rem 1rem; border-top: 1px solid var(--border); background: var(--sand); }
.faq-block__answer p { font-size: .95rem; line-height: 1.75; color: var(--mid); margin: .6rem 0 0; }

.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; border-radius: 8px; margin: 2.4rem 0; flex-wrap: wrap; }
.cta-box--primary { background: var(--navy); }
.cta-box--secondary { background: var(--sand-2); border: 1px solid var(--border); }
.cta-box--primary p { color: rgba(255,255,255,.75) !important; margin: 0; }
.cta-box--primary p strong { color: #fff !important; font-family: 'Sora', system-ui, sans-serif; font-size: 1.15rem; font-weight: 700; display: block; margin-bottom: 3px; }
.cta-box--secondary p { color: var(--navy-deep); margin: 0; }
.cta-box--secondary p strong { color: var(--navy-deep); font-family: 'Sora', system-ui, sans-serif; font-size: 1.15rem; font-weight: 700; display: block; margin-bottom: 3px; }
.cta-btn--primary { display: inline-flex; align-items: center; padding: 14px 32px; border-radius: 8px; background: var(--cta); color: #fff !important; font-family: 'Sora', system-ui, sans-serif; font-weight: 700; font-size: 1rem; text-decoration: none !important; box-shadow: 0 4px 16px rgba(var(--coral-rgb), .35); transition: opacity .2s; white-space: nowrap; }
.cta-btn--primary:hover { opacity: .88; color: #fff !important; }
.cta-btn--secondary { display: inline-flex; align-items: center; padding: 13px 32px; border-radius: 8px; background: transparent; border: 2px solid var(--teal); color: var(--teal) !important; font-family: 'Sora', system-ui, sans-serif; font-weight: 700; font-size: 1rem; text-decoration: none !important; transition: background .2s, color .2s; white-space: nowrap; }
.cta-btn--secondary:hover { background: var(--teal); color: #fff !important; }

/* ─── Product boxes (plateforme affiliate) ──────────────────── */
/* Variations HTML multiples → identité visuelle unifiée       */
.product-boxes { display: flex; flex-direction: column; gap: 20px; }
.product-box { position: relative; border: 1px solid var(--border); border-top: 4px solid var(--border); border-radius: 12px; overflow: hidden; margin: 1.8rem 0; background: var(--white); box-shadow: 0 4px 20px rgba(var(--navy-rgb), .07); transition: box-shadow .2s; }
.product-boxes .product-box { margin: 0; }
.product-box:hover { box-shadow: 0 8px 32px rgba(var(--navy-rgb), .13); }
.product-box--top, .product-box--featured { border-top-color: var(--amber); background: linear-gradient(180deg, rgba(244,162,74,.06) 0%, var(--white) 90px); }

/* Badge pill (dans header, inside inner) */
.product-box__badge { display: inline-flex; align-items: center; gap: 5px; font-size: .68rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; color: #fff; background: var(--navy); white-space: nowrap; }
.product-box__badge i[data-lucide] { width: 12px; height: 12px; flex-shrink: 0; stroke-width: 2.5; }
.product-box__badge--top1 { background: linear-gradient(135deg, var(--amber-2) 0%, var(--amber) 100%); color: var(--navy-deep); }
.product-box__badge--top2, .product-box__badge--secondary, .product-box__badge--ratio, .product-box__badge--alt { background: var(--teal); }
.product-box__badge--top3, .product-box__badge--tertiary { background: var(--soft); }

/* Badge → bandeau pleine largeur quand enfant direct du card */
.product-box > .product-box__badge {
    display: flex; width: 100%; margin: 0;
    padding: 9px 22px;
    border-radius: 0;
    justify-content: center; align-items: center; gap: 8px;
    font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.product-box > .product-box__badge i[data-lucide] { width: 14px; height: 14px; stroke-width: 2.5; }
.product-box--top, .product-box--featured { border-top-color: var(--amber); background: var(--white); }

/* En-tête horizontal (logo + nom) */
.product-box__header { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 16px 22px; border-bottom: 1px solid var(--sand-2); }
.product-box__header .product-box__badge { margin: 0; }

/* Layout inner (2 colonnes : img | content) */
.product-box__inner { display: grid; grid-template-columns: 180px 1fr; }
.product-box__img { background: var(--white); display: flex; align-items: center; justify-content: center; padding: 8px 14px; border: 1px solid var(--sand-2); border-radius: 8px; }
.product-box__img img, .product-box__logo { max-width: 110px; height: auto; max-height: 40px; object-fit: contain; }

/* Corps texte */
.product-box__content { padding: 18px 22px; display: flex; flex-direction: column; gap: 8px; }
.product-box__body { padding: 14px 22px 18px; display: flex; flex-direction: column; gap: 10px; }
.product-box__desc { padding: 14px 22px 0; font-size: .9rem; color: var(--mid); line-height: 1.65; }
.product-box__desc p { font-size: inherit; color: inherit; line-height: inherit; margin: 0 0 10px; }
.product-box__desc ul.article-list { margin: 4px 0 0; }
.product-box__desc ul.article-list li { font-size: .87rem; padding: 3px 0 3px 22px; line-height: 1.45; }
.product-box__name { font-family: 'Sora', system-ui, sans-serif; font-size: 1.15rem; font-weight: 700; margin: 0; color: var(--navy-deep); }
.product-box__stars { font-size: .88rem; }
.product-box__stars-icons { color: #F5A623; }
.product-box__stars-score { color: var(--soft); margin-left: 4px; }
.product-box__price { font-size: .88rem; color: var(--mid); margin: 0; padding: 12px 22px; border-top: 1px solid var(--sand-2); border-bottom: 1px solid var(--sand-2); background: rgba(46,134,171,.04); }
.product-box__price strong { font-size: 1.3rem; font-weight: 700; color: var(--teal); }

/* Listes de points (✓) — deux noms de classe coexistent */
.product-box__pros, .product-box__features { list-style: none; margin: 0; padding: 0; flex: 1; }
.product-box__pros li, .product-box__features li { font-size: .87rem; color: var(--mid); padding: 3px 0 3px 18px; position: relative; line-height: 1.4; }
.product-box__pros li::before, .product-box__features li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* CTA — deux usages : div wrapper OU lien direct */
.product-box__cta:not(a) { padding: 14px 22px 20px; }
.product-box__cta .cta-btn { display: block; text-align: center; width: 100%; box-sizing: border-box; }
.product-box__footer { padding: 0 22px 20px; }
a.product-box__cta { display: block; background: var(--cta); color: #fff !important; padding: 13px 22px; border-radius: 8px; text-decoration: none !important; font-family: 'Sora', system-ui, sans-serif; font-weight: 700; font-size: .95rem; text-align: center; margin-top: 8px; transition: opacity .15s; border: none; outline: none; }
a.product-box__cta:hover { opacity: .88; color: #fff !important; }
a.product-box__cta--secondary { background: transparent; border: 2px solid var(--teal); color: var(--teal) !important; }
a.product-box__cta--secondary:hover { background: var(--teal); color: #fff !important; }
.product-box__rank {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    background: var(--amber); color: #0E2237;
    font-family: 'Sora', system-ui, sans-serif; font-size: .75rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.product-box__body { padding: 16px 22px 20px; display: flex; flex-direction: column; gap: 10px; }
.product-box__cta--secondary { display: inline-block; background: transparent; border: 2px solid var(--teal); color: var(--teal) !important; padding: 11px 22px; border-radius: 7px; text-decoration: none !important; font-family: 'Sora', system-ui, sans-serif; font-weight: 700; font-size: .92rem; margin-top: 4px; transition: background .18s, color .18s; }
.product-box__cta--secondary:hover { background: var(--teal); color: #fff !important; }

/* ─── Badges couleur (tables, destinations) ────────────────── */
.badge { display: inline-block; font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; letter-spacing: .04em; }
.badge--green { background: #e8f5e9; color: #2e7d32; }
.badge--orange { background: #fff3e0; color: #e65100; }
.badge--red { background: #fdecea; color: #c62828; }

/* ─── Table destinations ────────────────────────────────────── */
.destinations-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.destinations-table th { background: var(--navy); color: #fff; padding: 10px 14px; text-align: left; font-family: 'Sora', system-ui, sans-serif; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.destinations-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); color: var(--mid); vertical-align: middle; }
.destinations-table tr:last-child td { border-bottom: none; }
.destinations-table tr:hover td { background: var(--sand); }
.destinations-table td:first-child { color: var(--navy-deep); font-weight: 600; }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 8px; border: 1px solid var(--border); margin: 1.5rem 0; }

/* ─── Info-box ────────────────────────────────────────────── */
.info-box { background: var(--sand-2); border-left: 4px solid var(--teal); border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 1.5rem 0; font-size: .9rem; color: var(--mid); }
.info-box strong { color: var(--navy-deep); }

/* ─── FAQ (markup article) ───────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 12px; margin: 1.5rem 0; }
.faq__item { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--white); }
.faq__question { font-family: 'Sora', system-ui, sans-serif; font-size: .97rem; font-weight: 600; color: var(--navy-deep); padding: 16px 20px; margin: 0; }
.faq__answer { padding: 0 20px 16px; }
.faq__answer p { font-size: .9rem; color: var(--mid); margin: 0; }

/* ─── Destination cards (road-trip sections) ─────────────── */
.dest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 1.8rem 0; }
.dest-card-article {
    background: var(--white); border: 1px solid var(--border);
    border-top: 3px solid var(--teal); border-radius: 10px;
    padding: 22px 22px 18px; display: flex; flex-direction: column; gap: 10px;
    transition: box-shadow .2s;
}
.dest-card-article:hover { box-shadow: 0 6px 24px rgba(var(--navy-rgb),.1); }
.dest-card-article__head { display: flex; align-items: center; gap: 12px; }
.dest-card-article__emoji { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.dest-card-article__name { font-family: 'Sora', system-ui, sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy-deep); margin: 0; }
.dest-card-article__chips { display: flex; gap: 6px; flex-wrap: wrap; }
.dest-card-article__chip { font-size: .68rem; font-weight: 600; padding: 3px 9px; border-radius: 100px; background: var(--sand-2); color: var(--mid); border: 1px solid var(--border); white-space: nowrap; }
.dest-card-article__text { font-size: .87rem; color: var(--mid); line-height: 1.65; flex: 1; margin: 0; }
.dest-card-article__link { font-size: .82rem; font-weight: 600; color: var(--teal); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.dest-card-article__link:hover { text-decoration: underline; }

@media (max-width: 700px) { .dest-grid { grid-template-columns: 1fr; } }

@media (max-width: 600px) {
    .product-box__inner { grid-template-columns: 1fr; }
    .product-box__img { border-right: none; border-bottom: 1px solid var(--border); }
    .cta-box { flex-direction: column; gap: 12px; }
    .cta-btn--primary, .cta-btn--secondary { width: 100%; text-align: center; justify-content: center; }
}
