@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #181a1f;
  background: #fff;
  font-synthesis: none;
  --ink: #181a1f;
  --muted: #62666f;
  --border: #dedfe2;
  --accent: #e65312;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-width: 320px; min-height: 100%; }
body { background: #fff; }

.coming-soon {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.machinery {
  position: absolute;
  inset: 0;
  background: url("images/telehandler.png") right center / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 24%, rgb(0 0 0 / 4%) 40%, rgb(0 0 0 / 32%) 58%, rgb(0 0 0 / 78%) 74%, #000 86%);
  mask-image: linear-gradient(90deg, transparent 24%, rgb(0 0 0 / 4%) 40%, rgb(0 0 0 / 32%) 58%, rgb(0 0 0 / 78%) 74%, #000 86%);
}

header, section {
  width: min(1440px, 100%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

header {
  height: 76px;
  padding: 0 32px;
  display: flex;
  align-items: center;
}

.brand {
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.06em;
  text-decoration: none;
}

.brand span, h1 span { color: var(--accent); }

section {
  min-height: calc(100svh - 76px);
  padding: 0 32px 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(62px, 8vw, 116px);
  line-height: .96;
  letter-spacing: -.07em;
}

p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.5;
}

.contact {
  margin-top: 26px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgb(230 83 18 / 35%);
}

.contact:hover { border-color: var(--accent); }
.contact:focus-visible { outline: 3px solid rgb(230 83 18 / 28%); outline-offset: 4px; }

@media (max-width: 720px) {
  header { height: 64px; padding: 0 20px; }
  .brand { font-size: 28px; }
  .machinery { display: none; }
  section {
    min-height: calc(100svh - 64px);
    justify-content: flex-start;
    padding: 18vh 20px 56px;
  }
  h1 { font-size: clamp(54px, 18vw, 76px); margin-bottom: 14px; }
  p { max-width: 310px; font-size: 15px; }
}

@media (prefers-reduced-motion: no-preference) {
  .brand, section { animation: arrive .45s ease-out both; }
  section { animation-delay: .08s; }
  @keyframes arrive { from { opacity: 0; transform: translateY(8px); } }
}
