/* --- Variables & Reset --- */
:root {
    /* Couleurs Premium */
    --primary-color: #d4af37;
    --primary-gradient: linear-gradient(135deg, #e6c875 0%, #d4af37 50%, #bfa030 100%);
    --primary-hover: #bfa030;
    
    --secondary-color: #1a1a1a;
    --bg-dark: #111111;
    --bg-light: #fafafa;
    
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #ffffff;
    
    --border-color: #eaeaea;
    --border-gold: rgba(212, 175, 55, 0.3);
    
    /* Polices */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Espacement */
    --container-width: 1200px;
    --section-spacing: 120px;
    --section-spacing-mobile: 80px;
    
    /* Box Shadows Premium */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* --- Accessibilité --- */
.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10px 20px;
    z-index: 10000;
    transition: top var(--transition-fast);
    font-weight: 500;
}

.skip-link:focus {
    top: 0;
}

/* --- Typographie --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }

h1 em {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 400;
}

p { margin-bottom: 1.25rem; }

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

.text-center { text-align: center; }
.text-light { color: var(--text-light) !important; }
.text-dark { color: var(--text-main) !important; }

strong { font-weight: 600; color: var(--secondary-color); }

.blockquote {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 2px solid var(--primary-color);
    padding-left: 20px;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

/* --- Éléments UI --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section-spaced {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
    position: relative;
}

.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 300;
}

.grid {
    display: grid;
    gap: 40px;
}

.card-shadow {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

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

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-white { background-color: #fff; }

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
    border: 1px solid transparent;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--primary-gradient);
    background-size: 200% auto;
    color: #fff;
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
    border: 1px solid transparent;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    box-shadow: var(--shadow-gold);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--secondary-color);
    border-color: #fff;
    transform: translateY(-2px);
}

/* --- Menu Overlay --- */
.menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Header & Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    height: 90px;
    display: flex;
    align-items: center;
    transition: all var(--transition-fast);
    background: rgba(255, 255, 255, 0); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 80px;
    border-bottom: none;
}

.main-header.scrolled .logo,
.main-header.scrolled .main-nav a:not(.btn) {
    color: var(--secondary-color);
}

.main-header.scrolled .main-nav a:not(.btn)::after {
    background: var(--primary-gradient);
}

.main-header.scrolled .hamburger,
.main-header.scrolled .hamburger::before,
.main-header.scrolled .hamburger::after {
    background-color: var(--secondary-color);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    transition: color var(--transition-fast);
    letter-spacing: -0.02em;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a:not(.btn) {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 5px 0;
    position: relative;
    transition: color var(--transition-fast);
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width var(--transition-fast);
}

.main-nav a:not(.btn):hover::after,
.main-nav a.active::after {
    width: 100%;
}

.btn-contact-nav {
    padding: 10px 24px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    position: relative;
    transition: background var(--transition-fast);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--text-light);
    left: 0;
    transition: transform var(--transition-fast), top var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.menu-toggle[aria-expanded="true"] .hamburger { background: transparent !important; }
.menu-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.menu-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); top: 0; }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 600px;
    width: 100%;
    position: relative;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -5%; left: -5%; width: 110%; height: 110%;
    background-image: url('hero-rose-jb.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slowZoom 25s ease-out infinite alternate;
    z-index: 0;
}

@keyframes slowZoom {
    0% { transform: scale(1) translate(0,0); }
    100% { transform: scale(1.05) translate(-1%, -1%); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(17,17,17,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding-top: 60px;
}

.hero-subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-title {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Indicateur de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    transition: border-color var(--transition-fast);
}

.scroll-indicator a:hover {
    border-color: #fff;
}

.scroll-indicator span {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); opacity: 1; }
    40% { transform: translateY(10px); opacity: 0; }
    41% { transform: translateY(-10px); opacity: 0; }
    42% { transform: translateY(-10px); opacity: 1; }
}

/* --- Section À Propos --- */
.about .grid {
    align-items: center;
    gap: 60px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    z-index: 1;
}

.about-image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    z-index: -1;
    transition: transform var(--transition-slow);
}

.about-image-wrapper:hover .about-image-frame {
    transform: translate(10px, 10px);
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    display: block;
}

.about-text .section-title {
    margin-bottom: 2rem;
}

.about-logo-wrapper {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.about-logo-card {
    width: min(100%, 320px);
    padding: 1rem;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 246, 237, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: var(--shadow-md);
}

.about-logo-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    pointer-events: none;
}

.about-logo {
    display: block;
    width: min(240px, 100%);
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 18px;
}

/* --- Section Services --- */
.service-card {
    text-align: center;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--border-gold);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.1);
}

.service-card h3 { margin-bottom: 15px; }

.service-card p.specialization {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Section Prestations --- */
.prestation-list {
    gap: 40px;
}

.prestation-item {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.prestation-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.prestation-item:hover::before {
    transform: scaleX(1);
}

.prestation-content {
    padding: 40px;
}

.prestation-item h3 {
    margin-bottom: 25px;
    font-size: 1.75rem;
}

.prestation-item ul {
    list-style: none;
    text-align: left;
}

.prestation-item li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.prestation-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d4af37' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* --- Section Contact --- */
.contact {
    background-color: var(--bg-dark);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.contact-info .section-title {
    margin-bottom: 2rem;
}

.contact-description {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 90%;
}

.contact-details {
    list-style: none;
    margin-top: 40px;
}

.contact-details li {
    margin-bottom: 25px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255,255,255,0.8);
}

.contact-details svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-details strong {
    display: block;
    color: #fff;
    margin-bottom: 2px;
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-details a {
    color: rgba(255,255,255,0.8);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.social-icons-wrapper {
    display: flex;
    gap: 20px;
}

.social-icon {
    font-family: var(--font-body);
    font-weight: 500;
    color: #fff;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.social-icon:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Formulaire */
.contact-form-container {
    padding: 50px 40px;
    border-radius: 12px;
}

.contact-form-container h3 { 
    margin-bottom: 30px; 
    font-size: 1.8rem;
}

.form-group { 
    margin-bottom: 25px; 
    position: relative;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid var(--border-color);
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--secondary-color);
    transition: border-color var(--transition-fast);
}

.form-group select {
    color: var(--text-muted);
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

/* Floating labels */
.floating-label label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--text-muted);
    transition: all 0.2s ease;
    pointer-events: none;
    font-weight: 400;
}

.floating-label input:focus ~ label,
.floating-label input:not(:placeholder-shown) ~ label,
.floating-label textarea:focus ~ label,
.floating-label textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.floating-label input::placeholder,
.floating-label textarea::placeholder {
    color: transparent;
}

.form-honeypot {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.form-feedback {
    min-height: 1.5rem;
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.form-feedback.is-success {
    color: #1f7a43;
}

.form-feedback.is-error {
    color: #b42318;
}

.btn-glow {
    margin-top: 10px;
}

/* --- Footer --- */
.main-footer {
    padding: 60px 0 30px;
    background-color: var(--bg-dark);
    color: rgba(255,255,255,0.6);
    text-align: center;
}

.footer-logo {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 1.05rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.8);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.35rem;
}

.cms-mention {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.cms-mention a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cms-mention a:hover {
    color: rgba(255,255,255,0.78);
}

.legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 0.9rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}

.legal-links a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-links a:hover {
    color: rgba(255,255,255,0.82);
}

/* --- Pages Légales --- */
.legal-page {
    padding: 150px 0 90px;
    min-height: calc(100vh - 240px);
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f3ea 100%);
}

.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb a:hover {
    color: var(--primary-hover);
}

.legal-shell {
    background: rgba(255,255,255,0.96);
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: var(--shadow-md);
    padding: 3rem;
    max-width: 980px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    padding-bottom: 1.8rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.legal-shell h1 {
    text-align: center;
    margin-bottom: 0.8rem;
}

.legal-header p {
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto;
}

.legal-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(250,247,241,0.92));
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 16px;
    padding: 1.6rem 1.8rem;
}

.legal-section + .legal-section {
    margin-top: 1.25rem;
}

.legal-shell h2 {
    margin-top: 0;
    margin-bottom: 0.9rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.28);
    font-size: clamp(1.35rem, 2vw, 1.6rem);
}

.legal-shell p,
.legal-shell ul {
    color: var(--text-main);
    line-height: 1.75;
}

.legal-shell ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}

.legal-shell li {
    margin-bottom: 0.7rem;
}

.legal-facts {
    list-style: none !important;
    padding-left: 0 !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.8rem;
}

.legal-facts li {
    margin-bottom: 0;
    padding: 0.95rem 1rem;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.legal-shell strong {
    color: var(--primary-color);
}

.legal-note {
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--primary-color);
    border-radius: 14px;
    padding: 1rem 1.2rem;
}

.legal-note p:last-child {
    margin-bottom: 0;
}

.legal-note-plain {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* --- Utilitaires --- */
.w-100 { width: 100%; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }

/* --- Media Queries (Responsive) --- */

/* Desktop / Grand Écran */
@media (min-width: 1024px) {
    .grid-2-cols { grid-template-columns: repeat(2, 1fr); }
    .grid-3-cols { grid-template-columns: repeat(3, 1fr); }
}

/* Tablettes & Petits écrans */
@media (max-width: 1023px) {
    html { font-size: 15px; }
    
    .section-spaced {
        padding-top: var(--section-spacing-mobile);
        padding-bottom: var(--section-spacing-mobile);
    }

    .grid-2-cols { grid-template-columns: 1fr; gap: 50px; }
    .grid-3-cols { grid-template-columns: repeat(2, 1fr); }
    .legal-facts { grid-template-columns: 1fr; }
    
    .about-image-wrapper { 
        max-width: 500px; 
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .main-header { height: 80px; }
    .main-header.scrolled { height: 70px; }
    
    .menu-toggle { display: block; }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right var(--transition-slow);
        z-index: 1000;
    }
    
    .main-nav.open { right: 0; }
    
    .main-nav ul {
        flex-direction: column;
        gap: 25px;
        text-align: left;
    }
    
    .main-nav a:not(.btn) {
        color: var(--secondary-color);
        font-size: 1.25rem;
    }
    
    .main-nav a:not(.btn)::after {
        background: var(--primary-gradient);
    }
    
    .btn-contact-nav {
        display: inline-block;
        margin-top: 20px;
    }
    
    .hero-title { font-size: 2.75rem; }
    .hero-ctas { flex-direction: column; gap: 15px; }
    .hero-ctas .btn { width: 100%; }
    
    .grid-3-cols { grid-template-columns: 1fr; }
    
    .contact-form-container {
        padding: 40px 25px;
    }

    .legal-page {
        padding-top: 120px;
        padding-bottom: 70px;
    }

    .legal-shell {
        padding: 2rem 1.25rem;
    }

    .legal-header {
        padding-bottom: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .legal-section {
        padding: 1.2rem 1rem;
    }

    .legal-links {
        gap: 10px 16px;
    }
}
