@font-face {
  font-family: "SF Pro Display";
  src:
    url("fonts/SF-Pro-Display-Semibold.woff2") format("woff2"),
    url("fonts/SF-Pro-Display-Semibold.otf") format("opentype");
  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;
  
  width: auto;
  flex: 0 0 auto;
}

.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;
}

.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: grid;
  place-items: center;
  padding: 92px 34px 100px;
}

.hero-container {
  max-width: 1130px;
  margin: 0 auto;
  position: relative;
}

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

.decoration {
  position: absolute;
  z-index: 2;
  display: block;
  width: clamp(3.5rem, 5.8vw, 6rem);
  height: auto;
  filter: drop-shadow(0 7px 5px rgba(0, 0, 0, 0.12));
  user-select: none;
  pointer-events: none;
}

.house {
  top: 7%;
  right: 20%;
  transform: rotate(5deg);
}

.paint {
  top: 17%;
  right: 7%;
  transform: rotate(-22deg);
}

.hammer {
  top: 53%;
  left: 14%;
  transform: rotate(-21deg);
}

.tools {
  top: 55%;
  right: 15%;
}

.chat {
  bottom: 2%;
  left: 49%;
  transform: translateX(-50%);
}

.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.75rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  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 {
  font-size: clamp(2.5rem, 4.7vw, 4.2rem);
  line-height: 1;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.12));
}

footer {
  margin-top: auto;
  padding: 12px 20px 40px;
  color: #929292;
  font-size: 0.8rem;
  text-align: center;
}

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

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

  .status-pill {
    min-width: auto;
    padding: 11px 17px;
    font-size: 0.78rem;
  }

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

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

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

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

  .brand-logo {
    height: 1.75rem;
  }

  .status-pill {
    padding: 9px 13px;
    font-size: 0.66rem;
  }

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

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
    letter-spacing: -0.06em;
  }

  .decoration {
    width: 3rem;
  }

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

  .paint {
    top: 15%;
    right: 20%;
  }

  .paint,
  .hammer,
  .tools {
    display: none;
  }

  .chat {
    bottom: 3%;
  }

  .contact-list {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
    padding: 22px 6px 18px;
  }

  .contact-card {
    padding: 8px 16px;
  }

  .site-footer {
    padding-bottom: 80px;
    text-align: center;
  }

  .site-footer svg {

    width: 300px;
    
    height: auto;
    margin: 0 auto;
  }
}
