/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "futura-pt", -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #F9F9F7; /* Blanc cassé papier */
    color: #1A1A1A;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Grain texture subtil pour éviter le flat digital */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.015;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
}

/* ==================== LAYOUT ==================== */
.container {
    max-width: 800px; /* Plus étroit = éditorial */
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
}

@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem 3rem;
    }
}

/* ==================== NAVIGATION ==================== */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(249, 249, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E5E5E3;
    z-index: 1000;
    padding: 1rem 2rem;
}

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

.nav-logo {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.7;
}

.nav-logo .domain {
    font-weight: 300;
    color: #888;
    letter-spacing: 0.2em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #000;
}
/* Navigation avec Access button */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-right .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
	/*padding-top:100px;*/
}

.nav-access-btn {
    background: none;
    border: 1px solid #D0D0CE;
    color: #666;
    font-family: inherit;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-access-btn:hover {
    border-color: #000;
    color: #000;
    background-color: rgba(0, 0, 0, 0.02);
}

@media (max-width: 768px) {
    .nav-bar {
        padding: 0.75rem 1.5rem;
    }
    
    .nav-logo {
        font-size: 0.75rem;
    }
    
    .nav-links a {
        font-size: 0.65rem;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .nav-access-btn {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }
	.nav-right .nav-links {padding-top: 100px;}
}

/* ==================== HAMBURGER MENU (CSS PUR) ==================== */

/* Checkbox invisible qui contrôle le menu */
.nav-toggle {
    display: none;
}

/* Bouton hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    padding: 4px;
    cursor: pointer;
    position: relative;
    z-index: 1003; /* Au-dessus de l'overlay (1001) et du menu (1002) */
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: #1A1A1A;
    margin: 2.5px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Animation hamburger → X */
.nav-container:has(.nav-toggle:checked) .nav-hamburger span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-container:has(.nav-toggle:checked) .nav-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-container:has(.nav-toggle:checked) .nav-hamburger span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Overlay - doit couvrir toute la page */
.nav-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001 !important; /* Au-dessus de la nav-bar (1000) mais derrière le menu (1002) */
    cursor: pointer;
    pointer-events: none;
}

.nav-container:has(.nav-toggle:checked) .nav-overlay,
.nav-toggle:checked ~ .nav-overlay {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Bloquer scroll quand menu ouvert */
body:has(.nav-toggle:checked) {
    overflow: hidden;
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Afficher le bouton Inquire à gauche du hamburger sur mobile */
    .nav-desktop-inquire {
        display: block;
    }

    .nav-hamburger {
        display: flex;
        margin-left: 0.75rem;
    }

    .nav-right {
        gap: 0.75rem;
        align-items: center;
    }

    .nav-access-btn {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
        white-space: nowrap;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #F9F9F7;
        flex-direction: column;
        padding: 8.5rem 2rem 2rem 2.5rem;
        margin: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1002; /* Au-dessus de l'overlay (1001) */
        border-left: 1px solid #E5E5E3;
    }

    /* Ouvrir le menu avec :has() */
    .nav-container:has(.nav-toggle:checked) .nav-links {
        right: 0;
    } 
	.nav-links li {
        margin: 0;
        border-bottom: 1px solid #E5E5E3;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1.25rem 0;
        font-size: 0.9rem;
        letter-spacing: 0.08em;
    }
}

/* Padding top pour compenser la nav fixe */
body.has-nav .container {
    padding-top: 7rem;
}

@media (max-width: 768px) {
    body.has-nav .container {
        padding-top: 5rem;
    }
	 .nav-links li {
        margin: 0;
        border-bottom: 1px solid #E5E5E3;
        padding-left: 1rem;
    }
}

/* ==================== HEADER / LOGO ==================== */
.brand-header {
    text-align: center;
    margin-bottom: 5rem;
}

.brand-wordmark {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    display: inline-block;
    margin-bottom: 0.75rem;
	margin-top: 2rem;
}

.brand-wordmark .domain {
    font-weight: 300;
    color: #888;
    letter-spacing: 0.2em;
}

.brand-tagline {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #666;
    font-style: italic;
}

/* ==================== HERO STATEMENT ==================== */
.hero {
    margin-bottom: 3.5rem;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    color: #000;
    text-align: left;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: #000;
    text-align: left;
    margin-top: 3rem;
}
.section-number+h2{margin-bottom:2rem;}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
}

/* ==================== CREDENTIALS BAR ==================== */
.credentials {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #999;
    text-align: center;
    margin-bottom: 4rem;
    padding: 0.75rem 0;
    border-top: 1px solid #E5E5E3;
    border-bottom: 1px solid #E5E5E3;
}

.credentials strong {
    color: #666;
    font-weight: 600;
}

/* ==================== CONTENT SECTIONS ==================== */
.content-block {
    margin-bottom: 4rem;
}

.content-block p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    font-weight: 300;
    margin-bottom: 1.1rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block p strong {
    font-weight: 600;
    color: #000;
}

.content-block p em {
    font-style: italic;
    color: #555;
}

/* Liste inline au lieu de bullets */
.inline-list {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    font-weight: 400;
}

/* Sections avec numéros (optionnel) */
.section-number {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #999;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Highlight box pour cas client */
.highlight-box {
    background-color: #F5F5F3;
    border-left: 3px solid #D0D0CE;
    padding: 2rem;
    margin: 2.5rem 0;
}

.highlight-box p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #444;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    /*margin-top: 2rem;
    padding-top: 3rem;
    border-top: 2px solid #E0E0DC;*/
    text-align: center;
}

.cta-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #000;
    color: #FFF;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
	cursor: pointer;
}

.cta-button:hover {
    background-color: #333;
    transform: translateY(-1px);
}

/* CTA Ghost - bordure fine, transparent */
.cta-ghost {
    display: block !important;
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    padding: 1.4rem 2rem !important;
    border: 1px solid #333 !important;
    border-radius: 2px !important;
    background: transparent !important;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    font-weight: 600 !important;
    text-align: center !important;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    white-space: nowrap !important;
}

.cta-ghost svg {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.4rem;
}

.cta-ghost:hover {
    background-color: #1A1A1A !important;
    color: #FFF !important;
    border-color: #1A1A1A !important;
}

/* Micro-note sous CTA */
.cta-micro-note {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    font-weight: 300;
    margin: 0.75rem 0 2rem;
    letter-spacing: 0.01em;
}

/* ==================== FORM STYLING ==================== */
#contact-form {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid #E0E0DC;
    position: relative;
}

.form-group {
    margin-bottom: 2.5rem;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #888;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.field-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #AAA;
    margin-bottom: 0.4rem;
    font-weight: 400;
    font-style: normal;
}

/* Radio buttons */
.radio-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"],
.radio-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-option label {
    display: inline-block;
    padding: 0.65rem 1.4rem;
    border: 1.5px solid #D0D0CE;
    border-radius: 24px;
    background-color: #FAFAF8;
    cursor: pointer;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    user-select: none;
}

.radio-option input:checked + label {
    background-color: #000;
    border-color: #000;
    color: #FFF;
}

.radio-option label:hover {
    border-color: #888;
}

/* Input fields */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.9rem 0;
    border: none;
    border-bottom: 1.5px solid #D0D0CE;
    background-color: transparent;
    font-family: inherit;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: #1A1A1A;
    transition: border-color 0.3s ease;
    outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-bottom-color: #000;
}

textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Submit button */
.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: #000;
    color: #FFF;
    border: none;
    font-family: inherit;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #333;
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Notifications */
.notification {
    background-color: #FFF3CD;
    border-left: 3px solid #FFC107;
    color: #856404;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification.success {
    background-color: #D4EDDA;
    border-left-color: #28A745;
    color: #155724;
}

/* Confidentiality checkbox */
.confidentiality-wrapper {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E5E3;
}

.confidentiality-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.confidentiality-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.confidentiality-checkbox label {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #666;
    cursor: pointer;
    letter-spacing: 0.02em;
}
/* ==================== PREMIUM TWEAKS (ADD AT END) ==================== */

/* 1) Typo: lecture plus "memo/advisory" */
.content-block p {
  font-size: 1.15rem;    /* au lieu de 1.3rem */
  line-height: 1.7;      /* légèrement plus aérien */
  color: #2E2E2E;
}

/* 2) Titres: un peu plus "statement", moins massif */
.hero h1 {
  font-size: 2.35rem;    /* au lieu de 2.6rem */
  line-height: 1.15;
}

/* 3) Légère amélioration du rythme vertical */
.content-block {
  margin-bottom: 4.5rem; /* un peu plus d’air */
}

/* 4) Soft list (pour "What we do / don’t" et "principles") */
.soft-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0 0;
}

.soft-list li {
  position: relative;
  padding-left: 1.2rem;
  margin: 9px 0 -0.4rem;
  font-size: 1.15rem;
  line-height: 1.65;
  color: #333;
  font-weight: 300;
}

.soft-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: #999;
}

/* 5) Note micro (ligne finale discrète) */
.micro-note {
  font-size: 0.95rem;
  color: #666;
  letter-spacing: 0.01em;
  margin-top: 1.25rem;
}

/* 6) CTA secondaire (lien texte sous le bouton) */
.cta-subtle {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  color: #666;
}

.text-link {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  padding-bottom: 2px;
}

.text-link:hover {
  border-bottom-color: rgba(0,0,0,0.6);
}

/* 7) (Optionnel) CTA en nav si tu l’actives un jour */
.nav-cta {
  padding: 0.75rem 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}
/* ==================== FOOTER BAUHAUS ==================== */
footer {
    margin-top: 6rem;
    padding: 1.5rem 2rem 1.5rem;
    border-top: 1px solid #E5E5E3;
    background-color: #F9F9F7;
}

/* Container pour centrer et limiter la largeur */
footer {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Nom des personnes - typographie Bauhaus */
.footer-name {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1A1A1A;
    margin-bottom: 1rem;
    text-align: left;
}

/* LinkedIn icon */
.linkedin-icon {
    display: inline-block;
    width: 0.95em;
    height: 0.95em;
    margin: 0 0.35em;
    vertical-align: baseline;
    position: relative;
    top: 0.08em;
    color: #1A1A1A;
    transition: color 0.3s ease;
}

.linkedin-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.linkedin-icon:hover {
    color: #0A66C2;
}

/* Détails du footer - texte discret */
.footer-details {
    margin-bottom: 2rem;
}

.footer-details p {
    font-size: 0.75rem;
    line-height: 1.8;
    color: #666;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-weight: 300;
    text-align: left;
}

.footer-details p:last-child {
    margin-bottom: 0;
}

/* Lien social - minimaliste */
.social-link {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E5E3;
}

.social-link a {
    display: inline-block;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.social-link a:hover {
    opacity: 0.6;
}

.social-link svg {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        margin-top: 4rem;
        padding: 3rem 1.5rem 2.5rem;
    }
    
    .footer-name {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-details p {
        font-size: 0.7rem;
        line-height: 1.7;
    }
    
    .social-link {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
	/* LinkedIn icon */
	.linkedin-icon {margin:0;}
}

