:root {
  --text: #202020;
  --muted: #6b6b6b;
  --line: rgba(32, 32, 32, .16);
  --accent: #f49c40;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
}

.page {
  min-height: 100vh;
  display: grid;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(32px, 6vw, 96px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 38%, rgba(255,255,255,.54) 66%, rgba(255,255,255,.18) 100%),
    url("background.webp") right bottom / min(78vw, 1250px) auto no-repeat,
    #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(0, 0, 0, .06);
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
}

.logo {
  display: block;
  width: clamp(180px, 24vw, 300px);
  height: auto;
  margin-bottom: clamp(48px, 8vw, 92px);
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.25rem);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 700;
  color: #595857;
}

.intro {
  max-width: 460px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.divider {
  width: 72px;
  height: 3px;
  margin: 38px 0 24px;
  background: var(--accent);
  border-radius: 999px;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  max-width: 600px;
  font-style: normal;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.5;
}

.contacts a {
  position: relative;
  color: inherit;
  text-decoration: none;
}

.contacts a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 18px;
  vertical-align: -.15em;
  background: var(--line);
}

.contacts a:hover {
  color: var(--text);
}

@media (max-width: 760px) {
  .hero {
    align-items: flex-start;
    padding: 34px 24px 260px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 52%, rgba(255,255,255,.62) 100%),
      url("background.webp") right bottom / 980px auto no-repeat,
      #fff;
  }

  .hero::before { inset: 12px; }

  .logo { margin-bottom: 84px; }

  .contacts {
    display: grid;
    gap: 10px;
  }

  .contacts a::after { display: none !important; }
}
