/* ---- Reset léger ---- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

:root{
  --bg: #0b0f0c;
  --paper: #0f1511;
  --card: #121a15;
  --text: #f2f6f2;
  --muted: #c9d3c9;
  --line: rgba(255,255,255,.12);
  --accent: #7ddc86;
  --accent-2: #46b36b;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --container: 1100px;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 30% -10%, rgba(125,220,134,.25), transparent 55%),
              radial-gradient(900px 500px at 80% 10%, rgba(70,179,107,.18), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
}

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* ---- Header ---- */
.header{
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(11,15,12,.55);
  border-bottom: 1px solid var(--line);
}

.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo{
  height: 52px;       /* ajuste si besoin */
  width: auto;
  display: block;
}

.brand__name{
  font-weight: 800;
  letter-spacing: .5px;
  white-space: nowrap;
}


.nav{
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar{
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.2);
}
.topbar__inner{
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
}
.topbar__item a{ text-decoration: underline; }

/* ---- Buttons ---- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(125,220,134,.35);
  background: linear-gradient(180deg, rgba(125,220,134,.25), rgba(70,179,107,.18));
  color: var(--text);
  box-shadow: var(--shadow);
  font-weight: 700;
}

.btn--ghost{
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn--small{
  padding: 10px 14px;
  box-shadow: none;
}

/* ---- Hero ---- */
.hero{
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,15,12,.88), rgba(11,15,12,.45), rgba(11,15,12,.88)),
    url("assets/foret.jpg") center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}

.hero__content{
  position: relative;
  padding: 64px 0;
  max-width: 780px;
}

.kicker{
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
}

.hero h1{
  font-size: clamp(40px, 6vw, 64px);
  margin: 0 0 12px;
  line-height: 1.05;
}

.lead{
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 22px;
}

.hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Sections ---- */
.section{
  padding: 72px 0;
}

.section--alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head{
  margin-bottom: 18px;
}

h2{
  font-size: 34px;
  margin: 0 0 6px;
}

.subtitle{
  color: var(--muted);
  margin: 0;
}

/* ---- Layout ---- */
.grid-2{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}

.grid-2-image{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}


.media{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.list{
  margin: 18px 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

/* ---- Cards ---- */
.cards{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.card img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.card__body{
  padding: 16px;
  text-align: center;
}

.card__body h3{
  margin: 0 0 8px;
  font-size: 18px;
}

.card__body p{
  margin: 0;
  color: var(--muted);
}

/* ---- Contact ---- */
.contact-box{
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.contact-box div{
  padding: 6px 0;
  color: var(--muted);
}

.map{
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form{
  margin-top: 70px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}

.form label{
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 600;
}

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline: none;
}

input:focus, textarea:focus{
  border-color: rgba(125,220,134,.55);
  box-shadow: 0 0 0 4px rgba(125,220,134,.12);
}

.hint{
  color: var(--muted);
  font-size: 13px;
  margin: 12px 0 0;
}

/* ---- Footer ---- */
.footer{
  padding: 22px 0;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.25);
  color: var(--muted);
}

.footer__inner{
  display: flex;
  justify-content: center;
}

/* ---- Responsive ---- */
@media (max-width: 900px){
  .grid-2{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .topbar__inner{ justify-content: flex-start; flex-wrap: wrap; }
}
