:root {
  --navy: #1d2648;
  --text: #1d2648;
  --muted: #1d2648;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family:
    "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  src: url(/assets/fonts/LSANS.TTF);
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: hidden;
}

.layout {
  display: grid;
  grid-template-columns: 42% 58%;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
}

.left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  position: relative;
  height: 100%;
  overflow-y: auto;
}

.content {
  max-width: 460px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.logo {
  margin-bottom: clamp(2rem, 9vh, 9rem);
  line-height: 0;
}

.logo svg {
  display: block;
  width: 196px;
  height: 196px;
}

.kicker {
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  color: var(--navy);
  margin: 0 0 3.5rem;
  font-weight: 500;
}

.wordmark {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 0.6rem;
  color: var(--navy);
  line-height: 1;
}

.wordmark svg {
  display: block;
  height: auto;
  margin: 0 auto;
}

.tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--navy);
  margin: 0 0 2.5rem;
  font-weight: 400;
}

.tagline svg {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 auto;
}

.desc {
  font-family:
    "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 4rem;
  max-width: 496px;
  font-weight: 400;
  font-style: normal;
}

.desc strong {
  color: var(--navy);
  font-weight: 650;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  padding: 0 1.5rem;
}

.contact a {
  color: var(--navy);
  text-decoration: none;
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
  font-weight: 400;
}

.contact a:hover {
  opacity: 0.7;
}

.contact .sep {
  color: var(--navy);
  opacity: 0.6;
}

.linkedin {
  display: inline-flex;
  align-items: center;
  border-bottom: none !important;
  padding: 0 !important;
  color: var(--navy);
}

.right {
  background-image: url("../img/bg-escalier.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-mobile {
  display: none;
}

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
    height: 100vh;
    height: 100dvh;
  }

  .right {
    display: none;
  }

  .left {
    padding: 4.5rem 1.25rem 4.5rem;
    height: 100vh;
    height: 100dvh;
    align-items: flex-start;
    overflow-y: auto;
  }

  .content {
    max-width: 100%;
  }

  .logo {
    margin-bottom: 2rem;
  }

  .logo svg {
    width: 120px;
    height: 120px;
  }

  .kicker {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .wordmark svg {
    width: 100%;
    max-width: 420px;
    height: auto;
  }

  .tagline {
    margin-bottom: 1.75rem;
  }

  .tagline svg {
    width: 140px;
  }

  .desc {
    font-size: 14px;
    margin-bottom: 1.75rem;
  }

  .hero-mobile {
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    aspect-ratio: 16 / 10;
    background-image: url("../img/bg-escalier.png");
    background-size: cover;
    background-position: center;
    margin-bottom: 0.5rem;
  }

  .contact {
    position: fixed;
    bottom: 0;
    font-size: 0.78rem;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: var(--bg);
    z-index: 10;
  }
}

@media (max-width: 480px) {
  .kicker {
    font-size: 1.05rem;
  }

  .contact {
    font-size: 0.72rem;
  }
}
