:root{
  --black:#020202;
  --white:#f9f8f4;

  --max:1120px;
  --pad:56px;

  --fs-base:16px;
  --fs-small:13px;

  --fs-h2:22px;
  --fs-h2big:34px;
  --fs-hero:40px;
  --fs-kicker:16px;

  --gap:48px;

  --logo-h-header:30px;
  --logo-h-footer:30px;
}

*{
  box-sizing:border-box;
}

html,body{
  height:100%;
}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-size:var(--fs-base);
  line-height:1.55;
}

/* links */

a,
a:link,
a:visited,
a:hover,
a:active{
  color:inherit;
  text-decoration:none;
}

/* layout */

.wrap{
  width:min(var(--max), calc(100% - var(--pad)));
  margin:0 auto;
}

/* themes */

.theme-black{
  background:var(--black);
  color:#ffffff;
}

.theme-white{
  background:var(--white);
  color:#000000;
}

/* header */

.header{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--black);
  color:#ffffff;
  border-bottom:1px solid rgba(255,255,255,.12);
}

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

.brand__logo{
  height:var(--logo-h-header);
}

.nav__cta{
  border:1px solid rgba(255,255,255,.6);
  padding:8px 16px;
  color:#ffffff;
  display:inline-block;
}

/* FORCE header links white */

.header a,
.header a:link,
.header a:visited,
.header a:hover,
.header a:active{
  color:#ffffff !important;
}

/* images */

img,
.media{
  display:block;
  width:100%;
  height:auto;
  border:0;
  outline:0;
  box-shadow:none;
}

/* hero */

.hero{
  padding:60px 0 90px;
}

.hero__introImage{
  margin-bottom:96px;
}

.hero__introImage img{
  width:100%;
  height:auto;
  object-fit:contain;
}

.hero__topline{
  font-size:18px;
  margin-bottom:14px;
}

.kicker{
  font-size:var(--fs-kicker);
  opacity:.9;
}

.hero__headline{
  font-size:22px;
  margin-top:14px;
}

/* sections */

.section{
  padding:60px 0;
}

/* columns */

.twoCol{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:var(--gap);
  align-items:center;
}

.twoCol{
  grid-template-areas:"image text";
}

.twoCol__image{
  grid-area:image;
}

.twoCol__text{
  grid-area:text;
  max-width:560px;
}

.twoCol__text--center{
  text-align:center;
  max-width:460px;
  margin:auto;
}

.twoCol--reverse{
  grid-template-areas:"text image";
}

/* picture fix */

.twoCol__image picture{
  display:block;
}

.twoCol__image picture img{
  display:block;
  width:100%;
}

/* typography */

.h2{
  font-size:var(--fs-h2);
  margin-bottom:12px;
}

.h2--big{
  font-size:var(--fs-h2big);
}

.subtitle{
  opacity:.6;
  margin-bottom:18px;
}

.p{
  margin-bottom:12px;
}

.priceLead{
  font-weight:600;
}

.priceNote{
  font-size:var(--fs-small);
  opacity:.75;
}

/* GRID PURE FIX price alignment */

#price .twoCol{
  align-items:stretch;
}

#price .twoCol__text--center{
  display:grid;
  grid-template-rows:auto 1fr auto;
  height:100%;
  margin:0;
}

#price .priceLead{
  grid-row:1;
}

#price .priceNote{
  grid-row:3;
  align-self:end;
}

/* form */

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

.form{
  display:grid;
  gap:14px;
  max-width:720px;
  width:100%;
}

.form__row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

input,
textarea{
  width:100%;
  padding:12px;
  border:1px solid currentColor;
  background:none;

  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* footer */

.footer{
  background:var(--black);
  color:#ffffff;
  padding:25px 0;
  border-top:1px solid rgba(255,255,255,.12);
}

.footer__grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  align-items:center;
}

.footer__left{
  justify-self:start;
}

.footer__center{
  justify-self:center;
}

.footer__right{
  justify-self:end;
}

.footer__logo{
  height:var(--logo-h-footer);
}

/* mobile */

@media(max-width:900px){

  :root{
    --pad:22px;
    --gap:22px;
  }

  .hero{
    padding:44px 0 56px;
  }

  .hero__introImage{
    margin-bottom:56px;
  }

  .twoCol{
    grid-template-columns:1fr;
    grid-template-areas:
    "image"
    "text";
    gap:24px;
  }

  .twoCol__text,
  .twoCol__text--center{
    max-width:100%;
    text-align:left;
  }

  .section{
    padding:44px 0;
  }

  .form__row{
    grid-template-columns:1fr;
  }

  .footer__grid{
    grid-template-columns:1fr;
    gap:10px;
    text-align:center;
  }
  
  /* cache le champ anti-spam honeypot */
  .hp{
    display:none;
  }

}