* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: #07155f;
  background: #f8f5ff;
}

.contact-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: url("../images/background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(44px, 5vw, 84px) clamp(26px, 6vw, 110px);
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 30%, rgba(255,255,255,.34), transparent 36%),
    radial-gradient(circle at 26% 66%, rgba(255,255,255,.24), transparent 34%);
}

.contact-wrap {
  width: min(1540px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(560px, 1.18fr);
  gap: clamp(56px, 7vw, 125px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-copy {
  position: relative;
  padding: 26px 0 22px;
}

.sparkle {
  position: absolute;
  color: #e75bec;
  filter: drop-shadow(0 4px 10px rgba(225,80,234,.28));
  line-height: 1;
}

.sparkle-top {
  top: -108px;
  left: -52px;
  font-size: 62px;
}

.contact-copy h1 {
  margin: 0 0 30px;
  font-size: clamp(60px, 6.4vw, 104px);
  line-height: .96;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: #07155f;
}

.lead {
  margin: 0 0 42px;
  font-size: clamp(22px, 1.72vw, 31px);
  line-height: 1.43;
  color: #5368c5;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.contact-button {
  width: min(445px, 100%);
  min-height: 82px;
  border-radius: 999px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: clamp(24px, 1.6vw, 31px);
  font-weight: 600;
  background: linear-gradient(95deg, #ff4ccf 0%, #d936ed 38%, #6e38ff 68%, #2f8eff 100%);
  box-shadow:
    0 14px 28px rgba(88, 67, 222, .20),
    inset 0 0 0 2px rgba(255,255,255,.78);
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(88, 67, 222, .26),
    inset 0 0 0 2px rgba(255,255,255,.90);
}

.button-sparkle {
  position: absolute;
  right: 20px;
  top: -29px;
  font-size: 58px;
  color: #fff;
  text-shadow:
    0 0 2px #c450ec,
    0 0 12px rgba(212,64,231,.55);
}

.response-note {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #6576cf;
  font-size: clamp(18px, 1.35vw, 25px);
  line-height: 1.3;
}

.heart {
  font-size: 39px;
  line-height: .8;
  color: #765bff;
  font-family: Arial, sans-serif;
}

.social-panel {
  padding: 56px;
  border-radius: 52px;
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(255,255,255,.62);
  box-shadow:
    0 22px 55px rgba(62, 68, 148, .08),
    inset 0 1px 0 rgba(255,255,255,.82);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.social-list {
  display: grid;
  gap: 30px;
}

.social-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 25px;
  align-items: center;
  padding: 22px 42px 22px 28px;
  border-radius: 34px;
  color: #07155f;
  text-decoration: none;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow:
    0 11px 29px rgba(68, 70, 149, .08),
    inset 0 1px 0 rgba(255,255,255,.94);
  transition: transform .18s ease, box-shadow .18s ease;
}

.social-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 15px 34px rgba(68, 70, 149, .12),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.social-card strong,
.social-card > span {
  font-size: clamp(21px, 1.5vw, 29px);
  white-space: nowrap;
}

.social-card strong {
  font-weight: 750;
}

.social-card > span {
  font-weight: 500;
}

.social-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  box-shadow: inset 0 0 18px rgba(255,255,255,.18);
}

.social-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.ig {
  background: linear-gradient(145deg, #ff49ca, #c74bed 55%, #7955ff);
}

.fb {
  background: linear-gradient(145deg, #b056ff, #6451ff);
  font-family: Arial, sans-serif;
  font-size: 58px;
  line-height: 1;
  padding-top: 12px;
}

.tt {
  background: linear-gradient(145deg, #5b55ff 12%, #7152f3 50%, #3087ff);
  font-size: 52px;
  line-height: 1;
  padding-bottom: 4px;
  text-shadow: 3px 1px 0 #ff54bf, -2px -1px 0 #3ff0ff;
}

.mail {
  background: linear-gradient(145deg, #f36fe1, #fd45ad);
}

@media (max-width: 1150px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-copy {
    max-width: 760px;
  }

  .social-panel {
    max-width: 880px;
    width: 100%;
  }

  .sparkle-top {
    top: -60px;
    left: -10px;
  }
}

@media (max-width: 700px) {
  .contact-section {
    min-height: auto;
    padding: 58px 20px 64px;
    background-position: center;
  }

  .contact-wrap {
    gap: 38px;
  }

  .contact-copy {
    padding-top: 14px;
  }

  .sparkle-top {
    top: -28px;
    left: -3px;
    font-size: 34px;
  }

  .contact-copy h1 {
    font-size: 56px;
    margin-bottom: 22px;
  }

  .lead {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .desktop-only {
    display: none;
  }

  .contact-button {
    min-height: 68px;
    font-size: 23px;
  }

  .button-sparkle {
    font-size: 42px;
    top: -20px;
    right: 14px;
  }

  .response-note {
    font-size: 17px;
    gap: 10px;
    margin-top: 24px;
  }

  .heart {
    font-size: 30px;
  }

  .social-panel {
    border-radius: 34px;
    padding: 20px;
  }

  .social-list {
    gap: 16px;
  }

  .social-card {
    min-height: 92px;
    grid-template-columns: 58px 1fr;
    gap: 15px;
    padding: 16px 18px;
    border-radius: 25px;
  }

  .social-card > span {
    grid-column: 2;
    margin-top: -12px;
  }

  .social-card strong,
  .social-card > span {
    font-size: 18px;
  }

  .social-icon {
    width: 56px;
    height: 56px;
    grid-row: 1 / span 2;
  }

  .social-icon svg {
    width: 32px;
    height: 32px;
  }

  .fb {
    font-size: 44px;
    padding-top: 8px;
  }

  .tt {
    font-size: 38px;
  }
}
