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

:root {
  --pink: #DE067D;
  --text: #333;
  --text-muted: #555;
  --max-width: 1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  min-height: 100vh;
  background-color: #f0f0f0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.82)),
    url("img/bg-kolo.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.topline {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--pink);
  z-index: 100;
}

.header {
  padding: 40px 24px 48px;
  text-align: center;
}

.header-title {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.logo img {
  display: block;
  width: min(240px, 70vw);
  height: auto;
}

.main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 64px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 72px;
}

.service {
  text-align: center;
}

.service h2 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.service h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 18px 0 6px;
}

.service p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.checklist {
  list-style: none;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.checklist li {
  margin-top: 4px;
}

.checklist li::before {
  content: "✓ ";
  color: var(--text);
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.contact-name {
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info p {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.contact-address {
  color: var(--text-muted);
  text-decoration: none;
}

.contact-address:hover {
  color: var(--pink);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--pink);
}

.contact-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.map-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.map {
  width: 100%;
  height: 260px;
  filter: grayscale(0.3) brightness(0.75) contrast(1.1);
  z-index: 0;
}

.map-marker {
  background: transparent;
  border: 0;
}

.map-marker img {
  display: block;
  width: 44px;
  height: 56px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}

.map .leaflet-control-attribution {
  font-size: 10px;
}

@media (max-width: 900px) {
  .services {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .map {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .header {
    padding-top: 32px;
  }

  .logo {
    gap: 10px;
  }

  .main {
    padding-bottom: 48px;
  }
}
