*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --dark: #111418;
            --mid: #1e2530;
            --accent: #c8a85a;
            --accent2: #e8c97a;
            --cream: #faf7f2;
            --white: #ffffff;
            --muted: #6b7280;
            --border: rgba(200,168,90,0.2);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--cream);
            color: var(--dark);
            overflow-x: hidden;
        }

        /* ── NAV ── */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 200;
            background: var(--dark);
            border-bottom: 1px solid rgba(200,168,90,0.25);
            transition: box-shadow 0.3s;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 30px rgba(0,0,0,0.4);
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

        .nav-logo img {
            height: 46px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 0;
        }

        .nav-links li a {
            display: block;
            padding: 8px 16px;
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            border-radius: 4px;
            transition: color 0.2s, background 0.2s;
        }

        .nav-links li a:hover {
            color: var(--accent);
            background: rgba(200,168,90,0.08);
        }

        .nav-cta {
            background: var(--accent) !important;
            color: var(--dark) !important;
            font-weight: 700 !important;
            border-radius: 4px !important;
        }

        .nav-cta:hover {
            background: var(--accent2) !important;
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 6px;
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* ── HERO ── */
        .hero {
            background: var(--dark);
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(200,168,90,0.07) 0%, transparent 70%);
        }

        /* Geometric lines decoration */
        .hero::after {
            content: '';
            position: absolute;
            right: -100px;
            top: 50%;
            transform: translateY(-50%);
            width: 600px;
            height: 600px;
            border: 1px solid rgba(200,168,90,0.08);
            border-radius: 50%;
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 28px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 60px;
            align-items: center;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            max-width: 620px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            margin-bottom: 24px;
            opacity: 0;
            animation: fadeUp 0.7s ease 0.1s forwards;
        }

        .hero-eyebrow::before, .hero-eyebrow::after {
            content: '';
            display: block;
            width: 28px;
            height: 1px;
            background: var(--accent);
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.4rem, 5vw, 4rem);
            font-weight: 900;
            color: white;
            line-height: 1.12;
            margin-bottom: 24px;
            opacity: 0;
            animation: fadeUp 0.7s ease 0.2s forwards;
        }

        .hero h1 em {
            font-style: normal;
            color: var(--accent);
        }

        .hero-sub {
            font-size: 1rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.75;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeUp 0.7s ease 0.3s forwards;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 0.7s ease 0.4s forwards;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: var(--dark);
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 14px 30px;
            border-radius: 3px;
            transition: all 0.2s;
        }

        .btn-primary:hover {
            background: var(--accent2);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(200,168,90,0.3);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            font-weight: 500;
            font-size: 0.85rem;
            text-decoration: none;
            padding: 14px 30px;
            border-radius: 3px;
            transition: all 0.2s;
        }

        .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
      .hero-logo-large img {
            opacity: 0;
            animation: fadeIn 1s ease 0.5s forwards;
        }

        .hero-logo-large img {
            width: 300px;
            filter:brightness(0.85);
            opacity: 0.15;
            background: white;
            
        }
       

      

        /* ── SERVICES STRIP ── */
        .services-strip {
            background: var(--mid);
            padding: 0;
            border-bottom: 1px solid white;
        }        

        .strip-item {
            padding: 32px 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-right: none;  
        }  

      .strip-img {
          width: 100%;
          max-width: 420px;
          height: auto;
          object-fit: contain;
        }

       
    

        /* ── SECTIONS ── */
        .section {
            padding: 96px 28px;
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-tag {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 900;
            color: var(--dark);
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .section-lead {
            font-size: 1rem;
            color: var(--muted);
            line-height: 1.8;
            max-width: 560px;
        }

        /* ── VISAGISTE ── */
        #visagiste { background: var(--white); }

        .visagiste-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .visagiste-points {
            list-style: none;
            margin: 32px 0;
        }

        .visagiste-points li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
            color: var(--dark);
            line-height: 1.6;
        }

        .visagiste-points li::before {
            content: '✦';
            color: var(--accent);
            font-size: 1rem;
            margin-top: 6px;
            flex-shrink: 0;
        }

        .visagiste-visual {
            position: relative;
        }

        .icon-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
        }

        .icon-cell {
            background: var(--cream);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 36px 20px;
            text-align: center;
            transition: background 0.2s;
        }

        .icon-cell:hover { background: #f0ebe0; }

        .icon-cell:first-child { border-radius: 12px 0 0 0; }
        .icon-cell:nth-child(2) { border-radius: 0 12px 0 0; }
        .icon-cell:nth-child(3) { border-radius: 0 0 0 12px; }
        .icon-cell:last-child { border-radius: 0 0 12px 0; }

        .icon-cell img {
            width: 64px;
            height: 64px;
            object-fit: contain;
        }

        .icon-cell-label {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* ── MONTURES ── */
        #choix-monture { background: var(--cream); }

        .montures-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .monture-feature {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
        }

        .monture-icon {
            width: 48px;
            height: 48px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .monture-text strong {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .monture-text span {
            font-size: 0.82rem;
            color: var(--muted);
        }

        .montures-highlight {
            background: var(--dark);
            border-radius: 12px;
            padding: 48px 40px;
            text-align: center;
            color: white;
        }

        .big-number {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 900;
            color: var(--accent);
            line-height: 1;
        }

        .big-number-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.65);
            margin-top: 8px;
            line-height: 1.5;
        }

        .montures-img {
            width: 100px;
            margin: 24px auto 0;
            display: block;
            filter: invert(1);
            opacity: 0.4;
        }

        /* ── ZONE ── */
        #zone-intervention { background: var(--dark); }

        #zone-intervention .section-title { color: white; }
        #zone-intervention .section-lead { color: rgba(255,255,255,0.55); }

        .zone-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 48px;
            align-items: start;
        }

        .communes-list {
            list-style: none;
        }

        .communes-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.07);
            color: rgba(255,255,255,0.8);
            font-size: 0.92rem;
        }

        .communes-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .communes-list li:last-child {
            color: var(--accent);
            font-style: italic;
            border-bottom: none;
        }

        .zone-callout {
            background: rgba(200,168,90,0.08);
            border: 1px solid rgba(200,168,90,0.2);
            border-radius: 8px;
            padding: 36px;
        }

        .zone-callout-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }

        .zone-callout p {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
            line-height: 1.75;
            margin-bottom: 24px;
        }

        /* ── LIVRAISON SAV ── */
        #livraison-sav { background: var(--white); }

        .livraison-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            margin-top: 48px;
        }

        .livraison-card {
            background: var(--cream);
            padding: 40px 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .livraison-card:first-child { border-radius: 12px 0 0 12px; }
        .livraison-card:last-child { border-radius: 0 12px 12px 0; }

        .livraison-card-img {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }

        .livraison-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dark);
        }

        .livraison-card p {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.75;
        }

        .livraison-card-highlight {
            background: var(--dark);
        }

        .livraison-card-highlight h3 { color: white; }
        .livraison-card-highlight p { color: rgba(255,255,255,0.55); }

        /* ── AVIS ── */
        #avis { background: var(--cream); }

        .avis-inner {
            max-width: 600px;
            margin: 48px auto 0;
            text-align: center;
        }

        .stars {
            color: var(--accent);
            font-size: 1.6rem;
            letter-spacing: 4px;
            margin-bottom: 24px;
        }

        .avis-quote {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 400;
            font-style: italic;
            line-height: 1.7;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .avis-author {
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--muted);
        }


        /* ── CONTACT ── */
        #contact {
            background: var(--cream);
            padding: 80px 0;
        }

        #contact .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        #contact .section-header p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-top: 12px;
        }

        .contact-methods {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 28px 40px;
            border-radius: 6px;
            text-decoration: none;
            min-width: 260px;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .contact-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.12);
        }

        .phone-btn {
            background: var(--navy);
            color: white;
        }

        .email-btn {
            background: var(--white);
            color: var(--navy);
            border: 2px solid var(--gold);
        }


 

        .btn-label {
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0.65;
        }

        .btn-value {
            font-size: 1.05rem;
            font-weight: 700;
        }



        .phone-btn {
        background: var(--dark);
        color: white;
        }

        .email-btn {
        background: var(--white);
        color: var(--dark);
        border: 2px solid var(--accent);
        }

     /* ── LISTEN BTN ── */
        .btn-listen {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: none;
            border: 1px solid var(--border);
            color: var(--muted);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 8px 16px;
            border-radius: 999px;
            cursor: pointer;
            margin-top: 24px;
            transition: border-color 0.2s, color 0.2s;
        }

        .btn-listen:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .section-dark .btn-listen {
            border-color: rgba(200,168,90,0.2);
            color: rgba(255,255,255,0.4);
        }

        .seo-text{
            max-width:900px;
            margin:40px auto;
            font-size:0.9rem;
            color:#777;
            line-height:1.7;
            padding:0 20px;
            text-align:center;
        }

/*---------FAQ------------*/
        .faq-container{
        max-width:700px;
        margin-top:40px;
        }

        .faq-item{
        border-bottom:1px solid #e5e7eb;
        }

        .faq-item:first-child{
        border-top:1px solid #e5e7eb;
        }

        .faq-question{
        width:100%;
        text-align:left;
        background:#ffffff;
        color:#111418;
        border:none;
        font-size:1rem;
        font-family:'DM Sans',sans-serif;
        font-weight:600;
        padding:20px 0;
        cursor:pointer;
        display:flex;
        justify-content:space-between;
        align-items:center;
        gap:16px;
        }

        .faq-icon{
        font-size:1.4rem;
        color:#c8a85a;
        flex-shrink:0;
        transition:transform 0.3s;
        }

        .faq-answer{
        max-height:0;
        overflow:hidden;
        transition:max-height 0.4s ease;
        color:#6b7280;
        line-height:1.7;
        font-size:0.95rem;
        }

        .faq-item.active .faq-answer{
        max-height:300px;
        padding-bottom:20px;
        }

        .faq-item.active .faq-icon{
        transform:rotate(45deg);
        }

             /* ── FOOTER ── */
        .site-footer{
            background:#0a0c0f;
            padding:35px 20px;
            text-align:center;
            border-top:1px solid rgba(255,255,255,0.08);
        }

        .footer-content{
            max-width:1000px;
            margin:auto;
        }

       .footer-brand{
            color:rgba(255,255,255,0.6);
            font-size:0.9rem;
            margin-bottom:10px;
            letter-spacing:0.02em;
        }

        .footer-links{
            display:flex;
            justify-content:center;
            align-items:center;
            gap:10px;
            flex-wrap:wrap;
            font-size:0.85rem;
        }

        .footer-links a{
            color:rgba(255,255,255,0.45);
            text-decoration:none;
            transition:color 0.2s;
        }

        .footer-links a:hover{
            color:var(--gold);
        }

        .footer-sep{
            color:rgba(255,255,255,0.2);
        }

        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: none;
        }

        /* bouton appel mobile */
        .call-mobile{
        position:fixed;
        bottom:0;
        left:0;
        right:0;
        background:#c8a85a;
        color:#111418;
        text-align:center;
        padding:16px;
        font-weight:700;
        font-size:16px;
        text-decoration:none;
        z-index:999;
        display:none;
        }

        .whatsapp-btn{
        position:fixed;
        color:white;
        width:55px;
        height:55px;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:26px;
        text-decoration:none;
        box-shadow:0 8px 20px rgba(0,0,0,0.25);
        z-index:998;
        }
        /* ── RESPONSIVE ── */
        @media (max-width:480px){
        .contact-btn{
        min-width:100%;
            }
        }
  
        @media(max-width:768px){
         .call-mobile{
        display:block;
            }
        }      
          
        @media (max-width: 900px) {
        .visagiste-grid,
        .montures-grid,
        .zone-grid { grid-template-columns: 1fr; gap: 40px; }

        .livraison-grid { grid-template-columns: 1fr; gap: 2px; }
        .livraison-card:first-child { border-radius: 12px 12px 0 0; }
        .livraison-card:last-child { border-radius: 0 0 12px 12px; }

        .strip-inner { grid-template-columns: repeat(3, 1fr); }
        .strip-item:nth-child(3) { border-right: none; }
        .strip-item:nth-child(4) { border-right: 1px solid rgba(255,255,255,0.06); }

        .hero-inner { grid-template-columns: 1fr; }
        .hero-logo-large { display: none; }

        .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark); padding: 8px 16px 16px; border-bottom: 1px solid rgba(200,168,90,0.15); }
        .nav-links.open { display: flex; }
        .hamburger { display: flex; }
        }

        @media (max-width: 600px) {
        .strip-inner { grid-template-columns: repeat(2, 1fr); }
        .strip-item:nth-child(2) { border-right: none; }
        .strip-item:nth-child(3),
        .strip-item:nth-child(5) { border-right: 1px solid rgba(255,255,255,0.06); }
        .icon-showcase { grid-template-columns: 1fr 1fr; }
        .contact-card { min-width: 100%; }
        }