:root {
  --charcoal: #111827;
  --burnt-orange: #c2410c;
  --dark-burnt-orange: #9a3412;
  --bright-burnt-orange: #ea580c;
  --slate: #64748b;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background: #efefef;
}

.hero-page {
  min-height: 100vh;
  padding: 1rem;
}

.hero-single {
  min-height: calc(100vh - 2rem);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 84%, rgba(234, 88, 12, 0.16), transparent 34%),
    radial-gradient(circle at 90% 30%, rgba(100, 116, 139, 0.28), transparent 42%),
    linear-gradient(120deg, #f3f6fa 0%, #e7edf4 58%, #64748b 100%);
}

.hero-top {
  position: absolute;
  inset: 1rem 1.2rem auto 1.2rem;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0;
}

.logo-wrap {
  display: inline-flex;
  width: 360px;
}

.logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-link {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.56rem 0.95rem;
  background: var(--dark-burnt-orange);
}

.hero-content {
  position: absolute;
  left: 3.4rem;
  right: 2rem;
  bottom: 2.1rem;
  max-width: 760px;
}

.hero-visual {
  position: absolute;
  left: 3.4rem;
  right: 3.4rem;
  top: 5.8rem;
  bottom: 12.6rem;
  display: flex;
  align-items: center;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 16px 28px rgba(17, 24, 39, 0.18));
}

.hero-visual picture {
  width: 100%;
  height: 100%;
  display: block;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.hero-content h1 {
  margin: 0;
  color: var(--charcoal);
  max-width: 16.5ch;
  font-size: clamp(2.2rem, 6vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero-content p {
  margin: 0.95rem 0 0;
  max-width: 45ch;
  color: rgba(17, 24, 39, 0.74);
  font-size: 16px;
  line-height: 1.52;
}

.cta {
  margin-top: 1.2rem;
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(
    120deg,
    var(--burnt-orange) 0%,
    var(--bright-burnt-orange) 100%
  );
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-top {
    grid-template-columns: 1fr auto;
    grid-template-areas: "logo contact";
  }

  .logo-wrap {
    grid-area: logo;
  }

  .contact-link {
    grid-area: contact;
  }

}

@media (max-width: 620px) {
  .hero-page {
    padding: 0.7rem;
  }

  .hero-single {
    min-height: calc(100vh - 1.4rem);
  }

  .logo-wrap {
    width: 220px;
  }

  .hero-content {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.3rem;
  }

  .hero-visual {
    left: 1.2rem;
    right: 1.2rem;
    top: 5.2rem;
    bottom: 12rem;
  }

  .hero-content p {
    font-size: 15px;
  }
}
