:root {
  --contact-blue: #0068ff;
  --contact-violet: #6547f5;
  --contact-pink: #b536f5;
  --contact-text: #111827;
  --contact-muted: #69768a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  color: var(--contact-text);
  font-family: var(--font);
}

.contact-template { overflow: hidden; }
.contact-container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.contact-hero {
  padding: 88px 0 84px;
  text-align: center;
}

.contact-title {
  display: inline-block;
  margin: 0;
  color: transparent;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: .02em;
  background-image: repeating-linear-gradient(
    120deg,
    #ff6678 0,
    #ff9c4a 30px,
    #f2cf4a 60px,
    #45c781 90px,
    #087f8c 120px,
    #2448b8 150px,
    #9870e4 180px,
    #ff6678 210px
  );
  background-size: 242.49px 100%;
  background-position: 0 center;
  background-repeat: repeat-x;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: contact-title-flow 10s linear infinite;
}

@keyframes contact-title-flow {
  from { background-position: 0 center; }
  to { background-position: 242.49px center; }
}

.contact-details { padding: 4px 0 86px; }

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  justify-content: space-between;
  gap: 0;
  align-items: start;
}

.contact-info-item {
  min-width: 0;
  text-align: center;
}

.contact-info-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.contact-info-icon-mail {
  --contact-icon-mask: url("./assets/icons/contact-mail-blue.png");
}

.contact-info-icon-service {
  --contact-icon-mask: url("./assets/icons/contact-service-blue.png");
}

.contact-info-icon-location {
  --contact-icon-mask: url("./assets/icons/contact-location-blue.png");
}

.contact-icon-mark {
  position: absolute;
  inset: 0;
  display: block;
  width: 48px;
  height: 48px;
  background: #536dfe;
  -webkit-mask-image: var(--contact-icon-mask);
  mask-image: var(--contact-icon-mask);
  mask-mode: alpha;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 48px 48px;
  mask-size: 48px 48px;
}

.contact-info-title {
  margin: 0;
  color: #111827;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  font-synthesis: none;
}

.contact-info-copy {
  margin-top: 20px;
  color: #5f6d80;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  font-synthesis: none;
}

.contact-info-copy p { margin: 0; }

.contact-info-copy a {
  color: inherit;
  text-decoration: none;
}

.contact-info-copy a:hover { color: #536dfe; }

.contact-map-section { padding: 0 0 92px; }

.contact-map-head {
  margin-bottom: 20px;
}

.contact-map-head h2 {
  margin: 0;
  color: #182235;
  font-size: 25px;
  line-height: 1.4;
  font-weight: 500;
}

.contact-map {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 18px;
  background: #eaf0f7;
}

.contact-map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #6f7d91;
  font-size: 14px;
}

.contact-map-pin {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: 7px solid #fff;
  border-radius: 50%;
  background: #536dfe;
  box-shadow: 0 5px 16px rgba(42, 64, 132, .32);
}

.contact-map-pin::after {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 7px;
  height: 7px;
  margin: -2px 0 0 -3.5px;
  border-radius: 50%;
  background: rgba(44, 61, 108, .24);
  content: "";
}

.contact-map-label {
  margin-top: -5px;
  padding: 7px 11px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  color: #273349;
  box-shadow: 0 5px 16px rgba(30, 44, 76, .14);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
}

.contact-map-label::before { display: none; }

html[data-site-theme="dark"] body { background: #11151e; }
html[data-site-theme="dark"] .contact-title {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}
html[data-site-theme="dark"] .contact-info-title,
html[data-site-theme="dark"] .contact-map-head h2 { color: var(--text-strong) !important; }
html[data-site-theme="dark"] .contact-info-copy { color: #aeb9ca !important; }

@media (prefers-reduced-motion: reduce) {
  .contact-title { animation: none; }
}

@media (max-width: 1160px) and (min-width: 1001px) {
  .contact-info-row { grid-template-columns: repeat(3, 320px); }
}

@media (max-width: 1000px) {
  .contact-info-row {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .contact-info-item { width: min(100%, 560px); margin: 0 auto; }
}

@media (max-width: 760px) {
  .contact-container { width: min(100% - 28px, 1120px); }
  .contact-hero { padding: 62px 0 64px; }
  .contact-title { font-size: 34px; }
  .contact-details { padding-bottom: 66px; }
  .contact-info-row { gap: 44px; }
  .contact-info-item { width: min(100%, 420px); margin: 0 auto; }
  .contact-info-icon { margin-bottom: 14px; }
  .contact-map-section { padding-bottom: 70px; }
  .contact-map { height: 320px; border-radius: 14px; }
}
