@font-face {
  font-family: "Geologica";
  src: url("fonts/Geologica-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #082a55;
  --muted: #526276;
  --line: #d8e1ec;
  --surface: #ffffff;
  --page: #f7f9fc;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Geologica", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.intro {
  width: min(960px, 100%);
  display: grid;
  justify-items: center;
  gap: 34px;
  padding: clamp(34px, 7vw, 76px);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(8, 42, 85, 0.08);
}

.logo {
  display: block;
  width: min(720px, 100%);
  height: auto;
}

.copy {
  max-width: 820px;
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 760;
  letter-spacing: 0;
}

p {
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 360;
}

.contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 0 2px 4px;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 650;
  text-align: center;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  overflow-wrap: anywhere;
}

@media (max-width: 560px) {
  .page-shell {
    padding: 20px 14px;
  }

  .intro {
    gap: 28px;
    padding: 30px 20px;
  }
}
