:root {
  color-scheme: dark;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color: #f4eee4;
  background: #101b29;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body {
  display: flex;
  min-height: 100svh;
  margin: 0;
  flex-direction: column;
}

main {
  display: grid;
  width: min(100% - 3rem, 70rem);
  margin: auto;
  place-items: center;
  flex: 1;
}

.intro {
  width: min(100%, 46rem);
  padding: 6rem 0;
}

.intro { text-align: center; }

.eyebrow {
  margin: 0 0 1.25rem;
  color: #d7b98b;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 9vw, 6.75rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.description {
  margin: 2rem auto;
  color: #d2d8dd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.55;
}

.contact {
  color: #f4eee4;
  font-weight: 650;
  text-decoration-color: #bd9a70;
  text-underline-offset: .35rem;
}

a:focus-visible {
  outline: 3px solid #d7b98b;
  outline-offset: 5px;
}

footer {
  border-top: 1px solid rgba(244, 238, 228, .18);
  color: #aeb7bf;
}

.footer-inner {
  display: flex;
  width: min(100% - 3rem, 70rem);
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2rem;
}

.company-details {
  text-align: right;
  font-size: .78rem;
  line-height: 1.55;
}

.company-details p { margin: 0 0 .25rem; }

@media (max-width: 650px) {
  .footer-inner { flex-direction: column; }
  .company-details { text-align: left; }
}
