@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/ibm-plex-mono-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --heading: #062e47;
  --accent: #477599;
  --sans: "ABC Diatype", Arial, Helvetica, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --button: "DIN Alternate", "Arial Narrow", Arial, sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; background: #dceaf2; color: #000; }
h1, h2, p { margin: 0; }
.landing {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: max(100px, 28.8086svh) 24px 64px 11.5972%;
}
.landscape { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.landscape img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.intro { width: 420px; max-width: 100%; font-family: var(--sans); font-weight: 700; }
h1 { color: var(--heading); font-size: 48px; line-height: 1.2; }
.tagline { padding-left: 6px; color: var(--accent); font-size: 24px; line-height: 1.2; }
.details { width: 318px; max-width: 100%; margin: 81.6px 0 0 6px; }
.description { display: grid; gap: 5px; font: 400 20px/1.3 var(--mono); }
.actions { display: flex; align-items: flex-start; gap: 17px; margin-top: 20px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  padding: 10px;
  background: #000;
  color: #fff;
  font: 700 16px/20px var(--button);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.phone { letter-spacing: 1.12px; }
.button:hover { background: var(--heading); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
@media (max-width: 600px) {
  .landing { min-height: max(874px, 100svh); padding: 380px 20px 60px; }
  h1 { font-size: 38px; line-height: 46px; }
  .tagline { font-size: 14px; line-height: 18px; }
  .details { margin: 200px 0 0; }
}

@media (max-width: 360px) {
  h1 { font-size: 34px; }
  .description { font-size: 18px; }
}
