:root {
  --text: #1f1f29;
  --muted: #666675;
  --soft: #f8f5fb;
  --lavender: #b89adf;
  --lavender-dark: #7e5cad;
  --border: #e8e0ef;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
  line-height: 1.6;
}

.site-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark img {
  width: 80px;
  height: auto;
  display: block;
  }

.eyebrow {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender-dark);
  font-weight: 700;
}

h1 {
  margin: -2px 0 0;
  font-size: 22px;
  line-height: 1.1;
}

.contact-link,
.button {
  color: var(--white);
  background: var(--text);
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 15px;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
}

.hero {
  padding: 78px 0 88px;
  max-width: 850px;
}

.intro {
  color: var(--lavender-dark);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h2 {
  font-size: clamp(40px, 7vw, 76px);
  letter-spacing: -0.055em;
  line-height: 0.96;
  margin: 0 0 24px;
}

.hero-copy {
  font-size: 20px;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 34px;
}

.services,
.about,
.contact-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 34px;
  margin-bottom: 24px;
  box-shadow: 0 18px 60px rgba(50, 30, 70, 0.06);
}

h3 {
  font-size: 28px;
  margin: 0 0 22px;
  letter-spacing: -0.03em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

article {
  padding: 22px;
  border-radius: 22px;
  background: var(--soft);
}

h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

article p,
.about p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.about p {
  max-width: 850px;
}

.contact-card {
  text-align: center;
  background: var(--text);
  color: var(--white);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-card a {
  display: inline-block;
  color: var(--white);
  font-size: 22px;
  margin-top: 10px;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 24px 46px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

footer p {
  margin: 0;
}

@media (max-width: 850px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 44px;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
  }

  .contact-link {
    display: none;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .services,
  .about,
  .contact-card {
    padding: 24px;
    border-radius: 24px;
  }

  footer {
    flex-direction: column;
  }
}
