:root {
    --green: #173526;
    --green-dark: #0f2419;
    --gold: #c49a4a;
    --cream: #f8f4ec;
    --white: #ffffff;
    --text: #1f2f25;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 244, 236, 0.96);
    z-index: 1000;
    border-bottom: 1px solid rgba(196, 154, 74, 0.25);
}

.header .container {
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 78px;
    width: auto;
}

.nav {
    display: flex;
    gap: 38px;
}

.nav a {
    color: var(--green);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.nav a:hover {
    color: var(--gold);
}

.btn-header,
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* HERO */

.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(10, 24, 16, 0.42), rgba(10, 24, 16, 0.42)),
        url("images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 95px;
}

.hero-overlay {
    padding: 40px 20px;
}

.hero-logo {
    width: 150px;
    margin: 0 auto 25px;
}

h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4rem, 9vw, 8rem);
    color: white;
    letter-spacing: 10px;
    font-weight: 600;
    text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.baseline {
    font-family: "Cormorant Garamond", serif;
    color: white;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin: 20px 0 38px;
    line-height: 1.35;
    text-shadow: 0 3px 16px rgba(0,0,0,0.4);
}

/* SECTIONS */

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span,
.about-text span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.section-title h2,
.about-text h2,
.contact h2 {
    font-family: "Cormorant Garamond", serif;
    color: var(--green);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: 1.15;
    font-weight: 600;
    margin-top: 14px;
}

/* PRESTATIONS */

.prestations {
    background: var(--cream);
}

.prestations-image {
    height: 360px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: -70px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.prestations-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding: 0 45px;
}

.service-card {
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(196,154,74,0.35);
    border-radius: 16px;
    padding: 42px 26px;
    text-align: center;
    box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-family: "Cormorant Garamond", serif;
    color: var(--green);
    font-size: 1.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.service-card h3::after {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--gold);
    display: block;
    margin: 14px auto 0;
}

.service-card p {
    font-size: 0.95rem;
}

/* À PROPOS */

.about {
    display: grid;
    grid-template-columns: 45% 55%;
    padding: 0;
    min-height: 620px;
    background: var(--cream);
}

.about-text {
    padding: 100px 7vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    margin-bottom: 35px;
}

.about-text p {
    margin-bottom: 22px;
    font-size: 1.02rem;
}

.about-image {
    min-height: 620px;
    position: relative;
}

.about-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--cream), rgba(248,244,236,0.08));
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTACT */

.contact {
padding: 140px 0;
background:
linear-gradient(rgba(248,244,236,0.92), rgba(248,244,236,0.92)),
url("images/contact-bg.jpg");
background-size: cover;
background-position: center;
}

.contact-card {
max-width: 900px;
margin: auto;
background: rgba(255,255,255,0.92);
border-radius: 24px;
padding: 70px 60px;
box-shadow: 0 20px 50px rgba(0,0,0,0.08);
border: 1px solid rgba(196,154,74,0.25);
}

.contact-card h2 {
text-align: center;
font-family: "Cormorant Garamond", serif;
color: var(--green);
font-size: 4rem;
margin-bottom: 25px;
}

.contact-card p {
text-align: center;
font-size: 1.3rem;
margin-bottom: 45px;
color: var(--green);
}

.contact-card form {
display: flex;
flex-direction: column;
gap: 18px;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
width: 100%;
padding: 20px;
border-radius: 12px;
border: 1px solid rgba(196,154,74,0.35);
font-size: 1.05rem;
font-family: "Inter", sans-serif;
}

.contact-card textarea {
min-height: 220px;
resize: vertical;
}

.contact-card .btn-primary {
width: 100%;
border: none;
cursor: pointer;
padding: 22px;
font-size: 1.1rem;
margin-top: 10px;
}

@media(max-width:768px){

.contact-card{
    padding:40px 25px;
}

.contact-card h2{
    font-size:2.6rem;
}

.contact-card p{
    font-size:1.1rem;
}


/* FOOTER */

.footer {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: white;
    text-align: center;
    padding: 50px 20px 30px;
}

.footer-logo {
    width: 150px;
    margin: 0 auto 20px;
}

.footer p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

/* RESPONSIVE */

@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 25px;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 420px;
    }
}

@media (max-width: 760px) {
    .header .container {
        height: auto;
        padding: 15px 0;
        flex-direction: column;
        gap: 12px;
    }

    .logo {
        height: 65px;
    }

    .nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-header {
        display: none;
    }

    .hero {
        padding-top: 150px;
    }

    h1 {
        letter-spacing: 4px;
    }

    .hero-logo {
        width: 120px;
    }

    .prestations-image {
        height: 250px;
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .about-text {
        padding: 70px 8vw;
    }

    .contact-card {
        padding: 40px 24px;
    }
    
    .contact-card form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.contact {
    padding: 140px 0;
}

.contact-card {
    max-width: 900px;
    padding: 70px 60px;
}

.contact-card h2 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.contact-card p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}.contact-card input,
.contact-card select,
.contact-card textarea {
    padding: 20px;
    font-size: 1.1rem;
}

.contact-card textarea {
    min-height: 220px;
}

.contact-card .btn-primary {
    font-size: 1.1rem;
    padding: 20px 40px;
    width: 100%;
    margin-top: 20px;
}