/* V106 — Contact section premium split layout, based on approved symmetrical concept */

.section-contact-premium,
.section-contact.section-contact-premium {
  background: var(--paper) !important;
  color: var(--black) !important;
  border-top: 1px solid var(--line);
}

.section-contact-premium .contact-premium-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, .78fr);
  gap: clamp(72px, 8vw, 128px);
  align-items: center;
}

.contact-premium-copy {
  max-width: 620px;
}

.section-contact-premium .section-kicker {
  color: var(--red) !important;
}

.contact-premium-title {
  max-width: 620px;
  color: #0f1012 !important;
}

.contact-premium-redline {
  width: 58px;
  height: 3px;
  margin: 28px 0 26px;
  background: var(--red);
}

.contact-premium-lead {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.72;
  color: #62666d;
}

.contact-benefits {
  margin-top: 28px;
  max-width: 520px;
  display: grid;
  gap: 0;
}

.contact-benefit {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16,16,16,.10);
}

.contact-benefit:last-child {
  border-bottom: 0;
}

.contact-benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16,16,16,.045);
  border: 1px solid rgba(16,16,16,.045);
  border-radius: 3px;
}

.contact-benefit-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-benefit strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
  color: #121316;
  letter-spacing: -.025em;
}

.contact-benefit p {
  margin-top: 5px;
  font-size: 15px;
  line-height: 1.55;
  color: #62666d;
}

.contact-premium-side {
  display: grid;
  justify-items: start;
  align-items: center;
  padding-top: 32px;
}

.contact-card-premium {
  width: min(100%, 520px);
  position: relative;
  padding: 36px 38px 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(255,255,255,.05), transparent 26%),
    linear-gradient(180deg, #11161b 0%, #090d10 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-top: 4px solid var(--red);
  border-radius: 3px;
  box-shadow: 0 24px 56px rgba(16,16,16,.22);
}

.contact-card-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.contact-card-row:first-child {
  padding-top: 2px;
}

.contact-card-row:nth-child(4) {
  border-bottom: 0;
  padding-bottom: 18px;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: rgba(255,255,255,.82);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-icon .accent {
  stroke: var(--red);
}

.contact-card-row span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.58);
}

.contact-card-row strong,
.contact-card-row strong a {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 760;
  letter-spacing: -.015em;
}

.contact-card-cta {
  margin-top: 18px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  border-radius: 3px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.015em;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.contact-card-cta span {
  font-size: 32px;
  line-height: 1;
}

.contact-card-cta:hover {
  background: #c9181e;
  border-color: #c9181e;
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .section-contact-premium .contact-premium-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-premium-side {
    padding-top: 0;
    justify-items: stretch;
  }

  .contact-card-premium {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .contact-premium-title {
    font-size: 42px;
  }

  .contact-benefit {
    grid-template-columns: 54px minmax(0,1fr);
    gap: 16px;
  }

  .contact-benefit-icon {
    width: 48px;
    height: 48px;
  }

  .contact-card-premium {
    padding: 28px 22px 26px;
  }

  .contact-card-row {
    grid-template-columns: 48px minmax(0,1fr);
    gap: 16px;
  }

  .contact-card-icon,
  .contact-card-icon svg {
    width: 38px;
    height: 38px;
  }

  .contact-card-row strong,
  .contact-card-row strong a {
    font-size: 16px;
  }
}
