/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #181818;
  color: #eaeaea;
  line-height: 1.75;
}

/* CONTAINER */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* TITRES */
h1, h2 {
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  font-size: 2.1rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

/* TEXTE */
p {
  font-size: 0.95rem;
  max-width: 620px;
  opacity: 0.9;
}

p + p {
  margin-top: 1rem;
}

/* SECTIONS */
section {
  padding: 6rem 0;
}
.section-method {
  background-color: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.section-contact {
  background-color: #f3f1ec;
  color: #111;
}

.section-contact a {
  color: #111;
  border-bottom: 1px solid rgba(17,17,17,0.4);
}

.section-contact h2 {
  color: #111;
}
.section-contact .contact-email a {
  font-size: 1.1rem;
  font-weight: 500;
}
.hero {
  background-color: #181818;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(243,241,236,0),
    rgba(243,241,236,0.6),
    rgba(243,241,236,0)
  );
}
.accent {
  color: #f3f1ec;
  letter-spacing: 0.15em;
}
.hero h1 {
  font-size: 2.4rem;
}

/* HERO */
.hero {
  padding: 7rem 0;
}

.hero p {
  margin-top: 1.5rem;
}

/* LIENS / CTA */
a {
  color: #eaeaea;
  text-decoration: none;
  border-bottom: 1px solid rgba(234,234,234,0.4);
  padding-bottom: 2px;
}

a:hover {
  opacity: 0.7;
}

/* LAYOUT IMAGE + TEXTE */
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-columns img {
  width: 100%;
  display: block;
}

/* MÉTHODE */
.method-list {
  list-style: none;
}

.method-list li + li {
  margin-top: 1.5rem;
}

/* CONTACT */
.section-contact p {
  margin-bottom: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .two-columns {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.8rem;
  }
}
