/* ============================================
   LE LOUP ET LA LAPINE - STYLES PRINCIPAUX
   Espace Privé & Salle de Réception
   Saint-Eustache, Québec
   ============================================ */

/* Variables & Reset */
:root {
    --noir: #0a0a0a;
    --noir-profond: #050505;
    --gris: #1a1a1a;
    --gris-moyen: #2a2a2a;
    --or: #c9a962;
    --or-clair: #e8d5a0;
    --or-fonce: #8b7355;
    --blanc: #f5f5f5;
    --blanc-casse: #e8e8e8;
    --bordeaux: #4a1c1c;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

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

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    background-color: var(--noir-profond);
    color: var(--blanc);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Grain Texture Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3;
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 25px 50px;
    background: rgba(5,5,5,1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(201,169,98,0.1);
}

.nav.scrolled {
    padding: 15px 50px;
    background: rgba(5,5,5,1);
    border-bottom: 1px solid rgba(201,169,98,0.25);
}

.nav__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav__logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--or);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav__logo:hover .nav__logo-img {
    filter: drop-shadow(0 0 15px rgba(201,169,98,0.5));
}

.nav__menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav__link {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blanc-casse);
    padding: 8px 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--or);
    transition: width 0.4s ease;
}

.nav__link:hover,
.nav__link.active {
    color: var(--or);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__cta {
    padding: 12px 32px;
    border: 1px solid var(--or);
    color: var(--or);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav__cta:hover {
    background: var(--or);
    color: var(--noir);
}

/* Hamburger */
.nav__hamburger {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 10000;
    background: none;
    border: none;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.nav__hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--or);
    transition: var(--transition);
    left: 0;
}

.nav__hamburger span:nth-child(1) { top: 0; }
.nav__hamburger span:nth-child(2) { top: 10px; }
.nav__hamburger span:nth-child(3) { top: 20px; }

.nav__hamburger.active span:nth-child(1) { 
    transform: rotate(45deg); 
    top: 10px; 
}
.nav__hamburger.active span:nth-child(2) { 
    opacity: 0; 
}
.nav__hamburger.active span:nth-child(3) { 
    transform: rotate(-45deg); 
    top: 10px; 
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero--short {
    min-height: 60vh;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: sepia(0.2) saturate(0.8);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(74,28,28,0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201,169,98,0.08) 0%, transparent 40%),
        linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.85) 100%);
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero__logo {
    height: 140px;
    width: auto;
    margin: 0 auto 35px;
    opacity: 0.95;
    filter: drop-shadow(0 0 30px rgba(201,169,98,0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero__label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--or);
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeUp 1s ease 0.2s both;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--blanc);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
    animation: fadeUp 1s ease 0.4s both;
}

.hero__title span {
    display: block;
    font-size: clamp(1rem, 2vw, 1.3rem);
    letter-spacing: 3px;
    color: var(--or-clair);
    margin-top: 15px;
    font-style: italic;
}

.hero__subtitle {
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 2px;
    color: var(--blanc-casse);
    margin-bottom: 25px;
    animation: fadeUp 1s ease 0.6s both;
}

.hero__free-tag {
    color: var(--or);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeUp 1s ease 0.7s both;
}

.hero__cta {
    display: inline-block;
    padding: 18px 60px;
    border: 1px solid var(--or);
    color: var(--or);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    animation: fadeUp 1s ease 0.8s both;
}

.hero__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--or);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: -1;
}

.hero__cta:hover {
    color: var(--noir);
}

.hero__cta:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeIn 1s ease 1.5s both;
}

.hero__scroll span {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--or);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--or), transparent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 120px 50px;
    position: relative;
}

.section--dark {
    background: var(--noir-profond);
}

.section--gray {
    background: var(--gris);
}

.section--gradient {
    background: linear-gradient(180deg, var(--noir-profond) 0%, var(--gris) 100%);
}

.section__line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--or), transparent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.container--wide {
    max-width: 1400px;
}

.container--narrow {
    max-width: 800px;
}

/* Section Headers */
.section__header {
    text-align: center;
    margin-bottom: 80px;
}

.section__label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 15px;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--blanc);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.section__divider {
    width: 60px;
    height: 1px;
    background: var(--or);
    margin: 0 auto 30px;
}

.section__intro {
    font-size: 1.05rem;
    color: var(--blanc-casse);
    font-weight: 200;
    line-height: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid {
    display: grid;
    gap: 40px;
}

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

.grid--asymmetric {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: rgba(26,26,26,0.6);
    border: 1px solid rgba(201,169,98,0.15);
    padding: 50px 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--or);
    transition: height 0.5s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,169,98,0.4);
    box-shadow: var(--shadow);
}

.card:hover::before {
    height: 100%;
}

.card__icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--or);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--or);
    margin-bottom: 25px;
}

.card__title {
    font-size: 1.4rem;
    color: var(--or);
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.card__text {
    font-size: 0.95rem;
    color: var(--blanc-casse);
    line-height: 1.9;
    font-weight: 200;
}

.card__list {
    list-style: none;
    margin-top: 20px;
}

.card__list li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--blanc-casse);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card__list li::before {
    content: '—';
    color: var(--or);
}

/* Image Cards */
.card--image {
    padding: 0;
    height: 400px;
    cursor: pointer;
}

.card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: grayscale(0.3);
}

.card--image:hover img {
    transform: scale(1.08);
    filter: grayscale(0);
}

.card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(5,5,5,0.85) 70%, rgba(5,5,5,0.98) 100%);
    transition: var(--transition);
}

.card--image:hover .card__overlay {
    background: linear-gradient(180deg, rgba(201,169,98,0.08) 0%, rgba(5,5,5,0.9) 60%, rgba(5,5,5,0.98) 100%);
}

.card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    transform: translateY(10px);
    transition: transform 0.5s ease;
}

.card__content .card__title {
    text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.card__content p {
    text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

.card--image:hover .card__content {
    transform: translateY(0);
}

.card__content p {
    opacity: 0;
    transition: opacity 0.5s ease 0.1s;
}

.card--image:hover .card__content p {
    opacity: 1;
}

/* ============================================
   ABOUT / CONTENT BLOCKS
   ============================================ */
.about__content h2 {
    font-size: 2.2rem;
    color: var(--or);
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.4;
}

.about__content p {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 20px;
    color: var(--blanc-casse);
    font-weight: 200;
}

.about__content strong {
    color: var(--or);
    font-weight: 400;
}

.about__image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 20px;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-top: 1px solid var(--or);
    border-right: 1px solid var(--or);
}

.image-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 55%;
    border-bottom: 1px solid var(--or);
    border-left: 1px solid var(--or);
}

.image-frame img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: sepia(0.1) contrast(1.05);
}

/* Badge */
.badge {
    position: absolute;
    bottom: 40px;
    right: -15px;
    background: var(--noir);
    border: 1px solid var(--or);
    padding: 25px 35px;
    text-align: center;
    z-index: 5;
}

.badge__number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--or);
    line-height: 1;
}

.badge__text {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blanc-casse);
    margin-top: 5px;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature__icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--or);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--or);
}

.feature__text strong {
    display: block;
    color: var(--or);
    font-weight: 400;
    margin-bottom: 5px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature__text span {
    font-size: 0.9rem;
    color: var(--blanc-casse);
    line-height: 1.6;
}

/* Feature Highlight (pour "Location Gratuite") */
.feature--highlight .feature__icon {
    background: rgba(201,169,98,0.15);
}

.feature--highlight .feature__text strong {
    color: var(--or);
}

/* ============================================
   STATS
   ============================================ */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 0;
    border-top: 1px solid rgba(201,169,98,0.2);
    border-bottom: 1px solid rgba(201,169,98,0.2);
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--or);
    line-height: 1;
    margin-bottom: 10px;
}

.stat__label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blanc-casse);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
    text-align: center;
    padding: 60px 40px;
    background: rgba(201,169,98,0.05);
    border: 1px solid rgba(201,169,98,0.2);
}

.testimonial__quote {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--blanc);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial__author {
    font-size: 0.9rem;
    color: var(--or);
    letter-spacing: 1px;
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.contact__info h2 {
    font-size: 2.2rem;
    color: var(--or);
    margin-bottom: 35px;
    font-weight: 300;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-block__icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--or);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--or);
}

.info-block__content h4 {
    font-size: 1rem;
    color: var(--or);
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-block__content p {
    font-size: 0.95rem;
    color: var(--blanc-casse);
    line-height: 1.8;
    font-weight: 200;
}

.info-block__content a:hover {
    color: var(--or);
}

.secret-note {
    margin-top: 45px;
    padding: 30px;
    border: 1px solid rgba(201,169,98,0.3);
    background: rgba(201,169,98,0.05);
}

.secret-note p {
    font-size: 0.95rem;
    color: var(--or-clair);
    font-style: italic;
    line-height: 1.8;
}

/* Form */
.form {
    background: rgba(26,26,26,0.5);
    border: 1px solid rgba(201,169,98,0.2);
    padding: 50px;
}

.form__title {
    font-size: 1.5rem;
    color: var(--or);
    margin-bottom: 30px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form__group {
    display: flex;
    flex-direction: column;
}

.form__group--full {
    grid-column: span 2;
}

.form__label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 10px;
    font-weight: 400;
}

.form__input,
.form__textarea,
.form__select {
    background: rgba(10,10,10,0.5);
    border: 1px solid rgba(201,169,98,0.2);
    padding: 15px 20px;
    color: var(--blanc);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    transition: var(--transition);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    outline: none;
    border-color: var(--or);
    background: rgba(10,10,10,0.8);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__select {
    cursor: pointer;
}

.form__select option {
    background: var(--noir);
}

.form__submit {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 1px solid var(--or);
    color: var(--or);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.form__submit:hover {
    background: var(--or);
    color: var(--noir);
}

.form__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form__message {
    padding: 15px 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: none;
}

.form__message--success {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
}

.form__message--error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--noir);
    padding: 80px 50px 40px;
    border-top: 1px solid rgba(201,169,98,0.1);
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer__brand-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer__brand-text {
    font-size: 0.95rem;
    color: var(--blanc-casse);
    line-height: 1.9;
    font-weight: 200;
    max-width: 300px;
}

.footer__title {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 25px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--blanc-casse);
    font-weight: 200;
}

.footer__links a:hover {
    color: var(--or);
}

.footer__contact p {
    font-size: 0.9rem;
    color: var(--blanc-casse);
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer__social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer__social-link {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201,169,98,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--or);
}

.footer__social-link:hover {
    background: var(--or);
    color: var(--noir);
    border-color: var(--or);
}

.footer__bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

.footer__credit {
    font-size: 10px;
    color: rgba(201,169,98,0.5);
}

.footer__credit a {
    color: var(--or);
}

/* Local SEO */
.local-seo {
    background: var(--noir-profond);
    padding: 35px 50px;
    border-top: 1px solid rgba(201,169,98,0.05);
}

.local-seo p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 2;
    text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 16px 45px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--or);
    color: var(--noir);
    border: 1px solid var(--or);
}

.btn--primary:hover {
    background: transparent;
    color: var(--or);
}

.btn--outline {
    background: transparent;
    color: var(--or);
    border: 1px solid var(--or);
}

.btn--outline:hover {
    background: var(--or);
    color: var(--noir);
}

/* ============================================
   ANIMATIONS
   ============================================ */
/* Animations - Visibles par défaut, animées si JS disponible */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 1;
    transform: none;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animations activées seulement si JS est chargé */
.js-loaded .reveal {
    opacity: 0;
    transform: translateY(40px);
}

.js-loaded .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.js-loaded .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.js-loaded .reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.js-loaded .reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.js-loaded .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.js-loaded .reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
}

.js-loaded .reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.js-loaded .reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.js-loaded .reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.js-loaded .reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .grid--asymmetric,
    .grid--2 { grid-template-columns: 1fr; }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
        background: #050505;
    }
    
    .nav.scrolled {
        padding: 12px 20px;
        background: #050505;
    }
    
    .nav__logo-text {
        font-size: 1rem;
    }
    
    .nav__hamburger {
        display: block;
    }
    
    .nav__menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background-color: #050505 !important;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 9999 !important;
        margin: 0;
        padding: 0;
    }
    
    .nav__menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #050505;
        z-index: -1;
    }
    
    .nav__menu.active {
        display: flex !important;
    }
    
    .nav__menu li {
        list-style: none;
        position: relative;
        z-index: 1;
    }
    
    .nav__link {
        font-size: 16px;
    }
    
    .nav__cta {
        margin-top: 20px;
    }
    
    .hero__logo {
        height: 80px;
        width: auto;
    }
    
    .hero__free-tag {
        font-size: 12px;
    }
    
    .section {
        padding: 80px 25px;
    }
    
    .hero__title {
        letter-spacing: 3px;
    }
    
    .grid--3,
    .grid--4 { grid-template-columns: 1fr; }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .form__group--full {
        grid-column: span 1;
    }
    
    .form {
        padding: 35px 25px;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__brand-text {
        max-width: 100%;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .badge {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero__logo {
        width: 120px;
        height: 120px;
    }
    
    .hero__cta {
        padding: 15px 35px;
    }
    
        padding: 8px 20px;
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .card {
        padding: 35px 25px;
    }
    
    .stat__number {
        font-size: 2.5rem;
    }
}

/* Conditions note */
.conditions-note {
    font-size: 11px;
    color: var(--blanc-casse);
    opacity: 0.6;
    margin-top: -15px;
    font-style: italic;
}
