:root {
  --green: #dfe8c7;
  --green-dark: #86a77f;
  --black: #050605;
  --cream: #fbf7eb;
  --text: #273022;
  --muted: #68705f;
  --border: rgba(39, 48, 34, .16);
}
* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--text);

    background-color: var(--black);
    background-image: url("../assets/fond.png");
    background-repeat: repeat;
    background-size: 512px;
}


a { color: inherit; text-decoration: none; }

.header {
    position: sticky;
    top: 0;
    z-index: 10;

    background: rgba(5, 6, 5, 0.55);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(223,232,199,.08);
}


.header-inner { max-width: 1180px; margin: auto; padding: 16px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { width: 230px; display: block; }
.nav { display: flex; flex-wrap: wrap; gap: 18px; color: var(--green); font-size: 15px; letter-spacing: .04em; text-transform: uppercase; }
.nav a { opacity: .78; }
.nav a:hover, .nav .active { opacity: 1; }

.hero {
    min-height: 72vh;

    background:
        linear-gradient(
            rgba(5,6,5,.55),
            rgba(5,6,5,.70)
        );

    color: var(--green);

    display: grid;
    place-items: center;

    padding: 80px 28px;
    text-align: center;
}

.hero-logo { width: min(780px, 86vw); margin-bottom: 44px; }
h1 { font-size: clamp(42px, 7vw, 92px); line-height: .95; margin: 0 0 24px; font-weight: 500; }
.hero p { max-width: 720px; margin: 0 auto 34px; font-size: 22px; line-height: 1.5; color: rgba(223,232,199,.82); }
.btn { display: inline-block; padding: 15px 26px; border: 1px solid var(--green); border-radius: 999px; color: var(--green); text-transform: uppercase; font-size: 13px; letter-spacing: .12em; }
.btn.dark { color: var(--text); border-color: var(--text); }
.section { max-width: 1180px; margin: auto; padding: 86px 28px; }
.eyebrow { color: var(--green-dark); text-transform: uppercase; letter-spacing: .18em; font-size: 13px; margin: 0 0 16px; }
h2 { font-size: clamp(34px, 5vw, 64px); line-height: 1.04; margin: 0 0 22px; font-weight: 500; }
.lead { max-width: 860px; font-size: 21px; line-height: 1.55; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 42px; }
.card { border: 1px solid var(--border); border-radius: 28px; padding: 32px; background: #fffdf5; min-height: 210px; }
.card img { width: 100%; height: 190px; object-fit: cover; border-radius: 20px; margin-bottom: 22px; }
.card h3 { font-size: 30px; margin: 0 0 14px; font-weight: 500; }
.card p { color: var(--muted); line-height: 1.55; font-size: 17px; }
.highlight { background: var(--black); color: var(--green); border-radius: 36px; padding: 54px; display: grid; grid-template-columns: 1.4fr .6fr; gap: 30px; align-items: center; }
.highlight p { color: rgba(223,232,199,.78); font-size: 20px; line-height: 1.5; }
.footer { background: var(--black); color: rgba(223,232,199,.75); padding: 32px 28px; }
.footer-inner { max-width: 1180px; margin: auto; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.page { max-width: 900px; margin: auto; padding: 90px 28px; min-height: 62vh; }
@media (max-width: 850px) { .header-inner { align-items: flex-start; flex-direction: column; } .logo { width: 190px; } .grid, .highlight { grid-template-columns: 1fr; } }
