:root {
    --bg: #0b0b0b;
    --ink: #f2f2f2;
    --gold: #d4af37;
    --muted: #b9b9b9
}

html,
body {
    margin: 0;
	padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 12px
}

header.hero {
    position: relative;
    /*min-height: 95vh;  74vh */ 
    /*display: flex;
    align-items: flex-end; */
/* Ajout*/
    background: linear-gradient(180deg, rgba(11, 11, 11, .10) 0%, rgba(11, 11, 11, .55) 60%, rgba(11, 11, 11, .90) 100%),  url('./img/hero.jpg') center top / cover no-repeat;
    /*filter: grayscale(100%) brightness(0.90);*/
    box-shadow: inset 0 -120px 120px rgba(0, 0, 0, .5)
}

/*header.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(11, 11, 11, .10) 0%, rgba(11, 11, 11, .55) 60%, rgba(11, 11, 11, .90) 100%), url('assets/img/hero.jpg') center/cover no-repeat;
    filter: grayscale(100%) brightness(0.90);
    box-shadow: inset 0 -240px 240px rgba(212, 175, 55, .10)
}

header.hero>* {
    position: relative;
    z-index: 1
}
*/

.brand {
    /*position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;  */
    align-items: center;
    gap: 10px;
    text-align: center
}

.brand img {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .5))
}

.brand h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: .04em;
    color: var(--gold)
}

.claim {
    /*position: absolute;
    top: 400px;
    left: 35%;	
     width: 100% 
    transform: translateX(-50%);
    display: flex;
    flex-direction: column; */
    align-items: center		
}

.claim .wrap {
    padding: 28px 20px 40px
}
.claim h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: .04em;
    color: var(--gold)
}
.claim h2 {
    margin: 0;
    font-weight: 500;
    color: var(--ink);
    font-size: clamp(20px, 3.2vw, 28px)
}

.claim p {
    margin: .35rem 0 0;
    color: var(--muted)
}

.kicker {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .82rem
}

section {
    padding: 64px 0
}

.two {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    align-items: center
}

.two.reverse {
    grid-template-columns: 1fr 1.1fr
}

.two img,
.card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block
}

h3 {
    color: var(--gold);
    margin: 0 0 8px;
    font-size: 1.4rem
}

.lead {
    font-size: 1.05rem;
    color: var(--ink)
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 14px
}

.card {
    background: #131313;
    border: 1px solid rgba(212, 175, 55, .25);
    border-radius: 14px;
    padding: 18px
}

.card h4 {
    color: var(--gold);
    margin: .2rem 0 .4rem;
    font-size: 1.05rem
}

.contact {
    background: #0f0f0f;
    border-top: 1px solid rgba(212, 175, 55, .25)
}

footer {
    text-align: center;
    color: #888;
    padding: 28px 0 50px;
    font-size: .95rem
}

.btn {
	position : relative;
    /* display: inline-block;  */
	display: inline;
    background: linear-gradient(180deg, #f1d27a, #d4af37);
    color: #1a1a1a;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 24px rgba(212, 175, 55, .25)	
}

.btn-container {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;	
}

.btn:hover {
  cursor: pointer;
}

.btn-container:hover btn {
  background-color: lightslategray;
  border: 1px solid red
}

.qr {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    background: #fff;
    padding: 8px
}


@media (max-width:880px) {

    .two,
    .two.reverse {
        grid-template-columns: 1fr
    }

    header.hero {
        min-height: 60vh
    }

    .brand img {
        height: 54px
    }
	.img_after {
		display: none;
	}
	.buttons {
        display: relative ;
    }	
	.btn-container {
      padding: 15px 5px;
    /* margin: auto 15px */
    }	
}
@media (min-width:881px) {

	.img_befor {
		display: none;
	}
	.buttons {
        display: flex ;
    }
	.btn-container {
      padding: 5px 5px;
    /* margin: auto 15px */
    }
}