@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SF Pro Display Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 600;
  color: #060606;
  background: #fff;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  min-height: 100vh;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 22px 40px 0;
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 68px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: 32px;
  margin-top: 5px;

}

.status-pill {
  min-width: 192px;
  padding: 14px 25px;
  border-radius: 999px;
  background: linear-gradient(100deg, #9e75e9, #b987f0);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.sr-only {
  display: none;
}

.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 95% 70%, rgba(209, 207, 255, 0.65), transparent 32%),
    radial-gradient(circle at 12% 13%, rgba(236, 246, 255, 0.85), transparent 38%),
    linear-gradient(125deg, #f3f6f8 0%, #f4f3f6 55%, #edecff 100%);
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 92px 34px 100px;
}

.hero-container {
  width: 1130px;
  max-width: 100%;
  position: relative;
  display: grid;
  place-items: center;
  align-self: stretch;
}

.sr-only {
  display: none;
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0;
  font-size: clamp(3.5rem, 5.6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.decoration {
  position: absolute;
  z-index: 2;
  display: block;

  height: auto;
  filter: drop-shadow(0 7px 5px rgba(0, 0, 0, 0.12));
  user-select: none;
  pointer-events: none;

  animation: float 6s ease-in-out infinite;

}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(4px, -6px);
  }
  50% {
    transform: translate(-3px, -10px);
  }
  75% {
    transform: translate(-5px, -4px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.house {
  top: 2%;
  right: 20%;
  width: clamp(3.5rem, 5.6vw, 6rem);
  animation-duration: 7s;
}

.paint {
  top: 18%;
  right: 5%;
  transform: rotate(0deg);
  width: clamp(3.5rem, 5.6vw, 5rem);
  animation-duration: 9s;
}

.hammer {
  top: 50%;
  left: 13%;
  transform: rotate(65deg);
  width: clamp(3.5rem, 5.6vw, 5rem);
  animation-duration: 6s;
}

.tools {
  top: 50%;
  right: 12%;
  transform: rotate(90deg);
  width: clamp(3.5rem, 5.6vw, 6rem);
  animation-duration: 8s;
}

.chat {
  bottom: -5%;
  left: 49%;
  transform: translateX(-50%);
  width: clamp(3.5rem, 5.6vw, 6rem);
  animation-duration: 10s;
}

.contact-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(30px, 5vw, 76px);
  padding: 34px 20px 30px;
}

.contact-card {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border-radius: 18px;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 600;
  
  transition: transform 180ms ease, color 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  color: #685ed8;
  transform: translateY(-3px);
}

.contact-card:focus-visible {
  outline: 3px solid #9b80ea;
  outline-offset: 8px;
}

.contact-icon {
  display: block;
  width: clamp(1.5rem, 4.7vw, 3.2rem);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.12));
}

@media (min-width: 621px) {
  .contact-icon--phone {
    width: calc(clamp(1.5rem, 4.7vw, 3.2rem) * 0.8);
  }
}

.site-footer {
  margin-top: auto;
  padding-bottom: 50px;
  text-align: center;
}

.site-footer img {
  display: block;
  width: 600px;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .page-shell {
    padding: 18px 18px 0;
  }

  .site-header {
    min-height: 62px;
  }

  .status-pill {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 70vh;
    padding: 100px 20px;
  }



  .hero h1 {
    font-size: clamp(2.7rem, 5.6vw, 5.8rem);
    line-height: 1.03;
  }

 

  .hero h1 br {
    display: none;
  }

  .contact-list {
    gap: 24px 38px;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding-inline: 12px;
  }

  .brand-logo {
    height: 1.75rem;
  }

  .status-pill {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 70vh;
    border-radius: 24px;
    padding: 96px 15px;
  }

  .hero-container {
    padding: 5px 40px;
    max-width: 100%;
    position: relative;
    display: grid;
    place-items: center;
    align-self: stretch;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 2.6rem);
    line-height: 1.2;
  }

  .hero h1 br {
    display: none;
  }

  .decoration {
    width: 3rem;
  }

  .house {
    top: 8%;
    right: 20%;
  }

  .paint {
    top: 30%;
    right: 2%;
  }

  
  .hammer {
    top: 33%;
    left: 0%;
  }
  .tools {
    top: 72%;
    right: 2%;
  }

  .chat {
    bottom: 5%;
  }

  .contact-list {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(12px, 4vw, 24px);
    padding: 22px 6px 18px;
  }

  .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 8px 6px;
  }

  .site-footer {
    margin-top: auto;
    padding-bottom: 50px;
    text-align: center;
  }
  
  .site-footer img {
    display: block;
    width: 400px;
    height: auto;
    margin: 0 auto;
  }
}
