* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #d85a13;
  --orange-dark: #bd480b;
  --charcoal: #292929;
  --grey: #777;
  --light-grey: #f6f6f4;
}

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 20px;
  background:
    radial-gradient(circle at center, rgba(216,90,19,.035), transparent 38%),
    linear-gradient(#ffffff, #fbfbfa);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(40,40,40,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40,40,40,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.watermark {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  font-family: Georgia, serif;
  font-size: min(42vw, 610px);
  line-height: .7;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 2px rgba(45,45,45,.045);
  opacity: .9;
  user-select: none;
}

.content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  text-align: center;
}

.future{color: #58595b}
.brand {
  margin-bottom: 30px;
}

.infinity-mark {
  height: 80px;
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: bold;
  font-size: 112px;
  line-height: 65px;
  letter-spacing: -12px;
  color: #333;
}

.infinity-mark .orange {
  display: inline-block;
  background: linear-gradient(110deg, var(--orange-dark) 10%, #f48635 42%, #333 51%, #242424 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-name {
  margin-top: 6px;
  font-size: 21px;
  letter-spacing: 4px;
  font-weight: 700;
  color: #555;
}

.brand-name span {
  color: var(--orange);
}

.brand-sub {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 4px;
  color: #999;
}

.accent-line {
  width: 82px;
  height: 2px;
  margin: 38px auto 34px;
  background: var(--orange);
}

h1 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  color: var(--orange);
  font-weight: 800;
}

.intro {
  margin: 28px auto 35px;
  color: #737373;
  font-size: 16px;
  line-height: 1.65;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 190px;
  padding: 17px 25px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .7px;
  border-radius: 3px;
  box-shadow: 0 7px 20px rgba(216,90,19,.14);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(216,90,19,.22);
}

.mail {
  font-size: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin: 54px auto 28px;
}

footer {
  color: #999;
  font-size: 9px;
  letter-spacing: 2px;
}

@media (max-width: 600px) {
  .hero {
    padding: 35px 20px;
  }

  .brand {
    margin-bottom: 20px;
  }

  .infinity-mark {
    font-size: 90px;
    height: 65px;
    line-height: 52px;
  }

  .brand-name {
    font-size: 17px;
    letter-spacing: 3px;
  }

  .accent-line {
    margin: 30px auto;
  }

  h1 {
    font-size: 39px;
  }

  .intro {
    font-size: 14px;
    max-width: 430px;
  }

  .desktop {
    display: none;
  }

  .watermark {
    font-size: 95vw;
  }
}
