/* RESET SIMPLE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  background-color: #e7eaeb;
  color: #0a1e2a;
}

/* LAYOUT */
header,
main {
  width: 90%;
  max-width: 900px;
  margin: 1rem auto;
  padding: 2rem;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}

main { display: flex; flex-direction: column; gap: 1rem; }

header {
  margin-top: 5rem;
  height: 30vh;
  color: #fff;
  background-color: #09293d;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TYPO */
h1 {
  font-size: clamp(1.2rem, 5.5vw, 5rem);
  font-weight: 800;
}

h1 sup {
  position: relative;
  top: -0.5em;
  left: 0.25em;
  font-size: 0.45em;
}

h2 {
  font-weight: 500;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.9;
}

p {
  margin: auto;
  max-width: 72%;
  text-wrap: balance;
}

/* LINKS */
a {
  color: #09293d;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* CONTACT */
.contact {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact a {
  display: inline-block;
  padding: 6px 16px;
  background: #09293d;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact a:hover {
  background: #173d55;
}

/* FOOTER */
.legal {
  margin: 2rem 0;
  text-align: center;
  color: #999;
}

.legal a {
  color: #777;
  text-decoration: none;
}
