/* ═══════════════════════════════════════════════════════
   FRENCH CHOICE HUB - Main Styles
   Architecture: SMACSS (l-layout, m-module, is-state)
   Theme: Élégance Française
   Effect: Brutalism
   Typography: Playfair Display + Lato
   ═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   1. CSS VARIABLES
   ═══════════════════════════════════════════════════════ */
:root {
    /* Élégance Française Theme */
    --paris-blue: #1e3a5f;
    --ivory-white: #f8f6f0;
    --champagne-gold: #c9a961;
    --bordeaux-red: #722f37;
    --noir-profond: #0d1117;
    --gris-perle: #e8e6e0;
    
    /* Backgrounds */
    --bg-body: var(--ivory-white);
    --bg-card: #ffffff;
    --bg-header: var(--paris-blue);
    --bg-footer: var(--noir-profond);
    --bg-section-alt: var(--gris-perle);
    
    /* Text */
    --text-primary: var(--noir-profond);
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-light: var(--ivory-white);
    --text-accent: var(--champagne-gold);
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Border Radius - Brutalism: минимальные или нулевые */
    --radius-none: 0;
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;
    
    /* Brutalism Shadows - жёсткие смещённые тени */
    --shadow-brutal-sm: 4px 4px 0 var(--noir-profond);
    --shadow-brutal-md: 6px 6px 0 var(--noir-profond);
    --shadow-brutal-lg: 8px 8px 0 var(--noir-profond);
    --shadow-brutal-gold: 6px 6px 0 var(--champagne-gold);
    --shadow-brutal-blue: 6px 6px 0 var(--paris-blue);
    
    /* Borders - Brutalism: толстые чёткие рамки */
    --border-brutal: 3px solid var(--noir-profond);
    --border-brutal-gold: 3px solid var(--champagne-gold);
    --border-brutal-white: 3px solid var(--ivory-white);
    
    /* Header */
    --header-height: 80px;
    
    /* Fonts - Élégant */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
}

/* ═══════════════════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--champagne-gold);
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
}

/* ═══════════════════════════════════════════════════════
   3. TYPOGRAPHY
   ═══════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--paris-blue);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.35rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--space-md);
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   4. LAYOUT - CONTAINER
   ═══════════════════════════════════════════════════════ */
.l-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ═══════════════════════════════════════════════════════
   5. LAYOUT - HEADER
   ═══════════════════════════════════════════════════════ */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--bg-header);
    z-index: 1000;
    border-bottom: 4px solid var(--champagne-gold);
}

.l-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* ═══════════════════════════════════════════════════════
   6. MODULE - LOGO
   ═══════════════════════════════════════════════════════ */
.m-logo {
    display: flex;
    align-items: center;
}

.m-logo__text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ivory-white);
    letter-spacing: -0.5px;
}

.m-logo__accent {
    color: var(--champagne-gold);
}

/* ═══════════════════════════════════════════════════════
   7. MODULE - NAVIGATION DESKTOP
   ═══════════════════════════════════════════════════════ */
.m-nav-desktop {
    display: flex;
    gap: var(--space-xl);
}

.m-nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--space-sm) 0;
    color: var(--ivory-white);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.m-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--champagne-gold);
    transition: width var(--transition-normal);
}

.m-nav-link:hover,
.m-nav-link.is-active {
    color: var(--champagne-gold);
}

.m-nav-link:hover::after,
.m-nav-link.is-active::after {
    width: 100%;
}

@media (max-width: 992px) {
    .m-nav-desktop {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════
   8. MODULE - BURGER MENU
   ═══════════════════════════════════════════════════════ */
.m-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.m-burger__line {
    width: 28px;
    height: 3px;
    background: var(--ivory-white);
    transition: var(--transition-normal);
}

@media (max-width: 992px) {
    .m-burger {
        display: flex;
    }
}

.m-burger.is-open .m-burger__line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.m-burger.is-open .m-burger__line:nth-child(2) {
    opacity: 0;
}
.m-burger.is-open .m-burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ═══════════════════════════════════════════════════════
   9. MODULE - MOBILE NAVIGATION
   ═══════════════════════════════════════════════════════ */
.m-nav-mobile {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 300px;
    height: calc(100vh - var(--header-height));
    background: var(--paris-blue);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    z-index: 999;
    transition: right var(--transition-normal);
    overflow-y: auto;
    border-left: 4px solid var(--champagne-gold);
}

.m-nav-mobile.is-open {
    right: 0;
}

.m-nav-mobile__link {
    padding: var(--space-md);
    color: var(--ivory-white);
    font-weight: 500;
    border: var(--border-brutal-white);
    background: transparent;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.m-nav-mobile__link:hover {
    background: var(--champagne-gold);
    color: var(--noir-profond);
    border-color: var(--champagne-gold);
}

.m-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: var(--transition-normal);
}

.m-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ═══════════════════════════════════════════════════════
   10. LAYOUT - MAIN CONTENT
   ═══════════════════════════════════════════════════════ */
.l-main {
    padding-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* ═══════════════════════════════════════════════════════
   11. MODULE - HERO SECTION
   ═══════════════════════════════════════════════════════ */
.m-hero {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--paris-blue) 0%, #2a4a6f 50%, var(--paris-blue) 100%);
    color: var(--ivory-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.m-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a961' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.m-hero__content {
    position: relative;
    z-index: 1;
}

.m-hero__badge {
    display: inline-block;
    background: var(--champagne-gold);
    color: var(--noir-profond);
    padding: var(--space-sm) var(--space-lg);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-lg);
    border: var(--border-brutal);
    box-shadow: var(--shadow-brutal-sm);
}

.m-hero__title {
    color: var(--ivory-white);
    margin-bottom: var(--space-lg);
    text-shadow: 3px 3px 0 var(--noir-profond);
}

.m-hero__subtitle {
    font-size: 1.25rem;
    color: var(--gris-perle);
    margin-bottom: var(--space-xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.m-hero__buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   12. LAYOUT - SECTIONS
   ═══════════════════════════════════════════════════════ */
.l-section {
    padding: var(--space-4xl) 0;
}

.l-section--alt {
    background: var(--bg-section-alt);
}

.l-section--dark {
    background: var(--paris-blue);
    color: var(--ivory-white);
}

.l-section--dark h2 {
    color: var(--ivory-white);
}

.l-section__title {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.l-section__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--champagne-gold);
    margin: var(--space-md) auto 0;
}

/* ═══════════════════════════════════════════════════════
   13. MODULE - BUTTONS (Brutalism Style)
   ═══════════════════════════════════════════════════════ */
.m-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: var(--border-brutal);
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
}

.m-btn--primary {
    background: var(--champagne-gold);
    color: var(--noir-profond);
    box-shadow: var(--shadow-brutal-sm);
}

.m-btn--primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-brutal-md);
    color: var(--noir-profond);
}

.m-btn--primary:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--noir-profond);
}

.m-btn--secondary {
    background: transparent;
    color: var(--paris-blue);
    border: var(--border-brutal);
    box-shadow: var(--shadow-brutal-sm);
}

.m-btn--secondary:hover {
    background: var(--paris-blue);
    color: var(--ivory-white);
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-brutal-md);
}

.m-btn--light {
    background: var(--ivory-white);
    color: var(--paris-blue);
    border: var(--border-brutal);
    box-shadow: var(--shadow-brutal-sm);
}

.m-btn--light:hover {
    background: var(--champagne-gold);
    color: var(--noir-profond);
    transform: translate(-2px, -2px);
}

.m-btn--small {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════
   14. LAYOUT - GRIDS
   ═══════════════════════════════════════════════════════ */
.l-grid {
    display: grid;
    gap: var(--space-xl);
}

.l-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 992px) {
    .l-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .l-grid--3,
    .l-grid--2 {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════
   15. MODULE - FEATURE CARDS (Brutalism)
   ═══════════════════════════════════════════════════════ */
.m-feature-card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border: var(--border-brutal);
    box-shadow: var(--shadow-brutal-md);
    text-align: center;
    transition: var(--transition-fast);
}

.m-feature-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-brutal-lg);
}

.m-feature-card__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.m-feature-card__title {
    margin-bottom: var(--space-sm);
}

.m-feature-card__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════
   16. MODULE - OFFER CARDS (Operators)
   ═══════════════════════════════════════════════════════ */
.m-offer-card {
    background: var(--bg-card);
    border: var(--border-brutal);
    box-shadow: var(--shadow-brutal-md);
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
    overflow: hidden;
}

.m-offer-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-brutal-lg);
}

.m-offer-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--gris-perle);
    border-bottom: var(--border-brutal);
}

.m-offer-card__logo {
    width: 100px;
    height: 70px;
    object-fit: contain;
    background: white;
    padding: var(--space-sm);
    border: 2px solid var(--noir-profond);
}

.m-offer-card__info h3 {
    margin-bottom: var(--space-xs);
}

.m-offer-card__rating {
    color: var(--champagne-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.m-offer-card__body {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.m-offer-card__bonus {
    background: var(--champagne-gold);
    color: var(--noir-profond);
    padding: var(--space-md);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    border: 2px solid var(--noir-profond);
}

.m-offer-card__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.m-offer-card__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
}

.m-offer-card__feature::before {
    content: '✓';
    color: var(--champagne-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.m-offer-card__license {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.m-offer-card__license::before {
    content: '🛡️';
}

.m-offer-card__buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: auto;
    padding: var(--space-lg);
    border-top: 2px solid var(--gris-perle);
}

.m-offer-card__buttons .m-btn {
    flex: 1;
    text-align: center;
}

/* Rating Stars */
.l-stars {
    color: var(--champagne-gold);
    letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════════════
   17. MODULE - FAQ ACCORDION
   ═══════════════════════════════════════════════════════ */
.m-faq {
    max-width: 800px;
    margin: 0 auto;
}

.m-faq__item {
    border: var(--border-brutal);
    margin-bottom: var(--space-md);
    background: var(--bg-card);
    box-shadow: var(--shadow-brutal-sm);
}

.m-faq__question {
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--paris-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.m-faq__question:hover {
    background: var(--gris-perle);
}

.m-faq__question::after {
    content: '+';
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--champagne-gold);
    transition: var(--transition-fast);
}

.m-faq__item.is-open .m-faq__question::after {
    transform: rotate(45deg);
}

.m-faq__item.is-open .m-faq__question {
    background: var(--champagne-gold);
    color: var(--noir-profond);
}

.m-faq__item.is-open .m-faq__question::after {
    color: var(--noir-profond);
}

.m-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.m-faq__item.is-open .m-faq__answer {
    max-height: 500px;
}

.m-faq__answer-inner {
    padding: var(--space-lg);
    border-top: 2px solid var(--gris-perle);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   18. MODULE - ARTICLE CARDS
   ═══════════════════════════════════════════════════════ */
.m-article-card {
    background: var(--bg-card);
    border: var(--border-brutal);
    box-shadow: var(--shadow-brutal-md);
    transition: var(--transition-fast);
    overflow: hidden;
}

.m-article-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-brutal-lg);
}

.m-article-card__content {
    padding: var(--space-lg);
}

.m-article-card__category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ivory-white);
    background: var(--paris-blue);
    padding: var(--space-xs) var(--space-sm);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.m-article-card__title {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.m-article-card__excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   19. LAYOUT - FOOTER
   ═══════════════════════════════════════════════════════ */
.l-footer {
    background: var(--bg-footer);
    color: var(--ivory-white);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 4px solid var(--champagne-gold);
}

.l-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
    .l-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.l-footer__title {
    color: var(--champagne-gold);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.l-footer__text {
    color: var(--gris-perle);
    font-size: 0.95rem;
    line-height: 1.8;
}

.l-footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.l-footer__list a {
    color: var(--gris-perle);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.l-footer__list a:hover {
    color: var(--champagne-gold);
    padding-left: var(--space-sm);
}

.l-footer__compliance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md) var(--space-lg);
    margin-top: var(--space-lg);
    align-items: center;
    justify-items: start;
    max-width: 320px;
}

@media (max-width: 768px) {
    .l-footer__compliance {
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        max-width: 100%;
    }
}

.l-footer__compliance-logo {
    height: 50px;
    width: auto;
    max-width: 90px;
    opacity: 0.85;
    transition: var(--transition-fast);
    object-fit: contain;
}

.l-footer__compliance-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.l-footer__compliance-logo--light-bg {
    background-color: var(--ivory-white);
    padding: 6px 10px;
    border-radius: 6px;
}

.l-footer__bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.l-footer__address {
    margin-top: var(--space-xs);
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════
   20. LAYOUT - DISCLAIMER
   ═══════════════════════════════════════════════════════ */
.l-disclaimer {
    background: var(--bordeaux-red);
    padding: var(--space-md) 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--ivory-white);
}

.l-disclaimer strong {
    background: var(--ivory-white);
    color: var(--bordeaux-red);
    padding: 2px 8px;
    margin-right: var(--space-sm);
}

/* ═══════════════════════════════════════════════════════
   21. MODULE - MODAL
   ═══════════════════════════════════════════════════════ */
.m-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.m-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.m-modal__content {
    background: var(--bg-card);
    padding: var(--space-2xl);
    border: var(--border-brutal);
    box-shadow: var(--shadow-brutal-lg);
    text-align: center;
    max-width: 450px;
    width: 90%;
}

.m-modal__title {
    margin-bottom: var(--space-md);
}

.m-modal__text {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.m-modal__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════
   22. MODULE - COOKIE BANNER
   ═══════════════════════════════════════════════════════ */
.m-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--paris-blue);
    padding: var(--space-lg) 0;
    z-index: 1500;
    transform: translateY(100%);
    transition: var(--transition-normal);
    border-top: 4px solid var(--champagne-gold);
}

.m-cookie-banner.is-visible {
    transform: translateY(0);
}

.m-cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.m-cookie-banner p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--ivory-white);
    margin: 0;
}

.m-cookie-banner a {
    color: var(--champagne-gold);
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════
   23. MODULE - BREADCRUMBS
   ═══════════════════════════════════════════════════════ */
.l-breadcrumbs {
    padding: var(--space-lg) 0;
    background: var(--gris-perle);
    border-bottom: 2px solid var(--noir-profond);
}

.l-breadcrumbs__list {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.l-breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.l-breadcrumbs__item:not(:last-child)::after {
    content: '→';
    color: var(--text-muted);
}

.l-breadcrumbs__item a {
    color: var(--paris-blue);
}

.l-breadcrumbs__item a:hover {
    color: var(--champagne-gold);
}

.l-breadcrumbs__item.is-current {
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   24. UTILITY CLASSES
   ═══════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mt-5 { margin-top: var(--space-2xl); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }

.hidden { display: none !important; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

/* ═══════════════════════════════════════════════════════
   25. SCROLLBAR (Brutalism Style)
   ═══════════════════════════════════════════════════════ */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gris-perle);
    border-left: 2px solid var(--noir-profond);
}

::-webkit-scrollbar-thumb {
    background: var(--paris-blue);
    border: 2px solid var(--noir-profond);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--champagne-gold);
}

/* ═══════════════════════════════════════════════════════
   26. PRINT STYLES
   ═══════════════════════════════════════════════════════ */
@media print {
    .l-header,
    .m-burger,
    .m-nav-mobile,
    .m-modal,
    .m-cookie-banner,
    .l-disclaimer {
        display: none !important;
    }
    
    .l-main {
        padding-top: 0;
    }
    
    body {
        background: white;
        color: black;
    }
}
