/* Contact reach panel (replaces form column) */
.ogi-reach {
  background: rgba(248, 246, 252, 0.92);
  border: 1px solid rgba(90, 60, 120, 0.12);
  padding: 1.75rem 1.5rem 1.5rem;
  height: 100%;
}

.ogi-reach__intro {
  margin: 0 0 1.35rem;
  color: #2a2a2a;
  font-size: 1.05rem;
  line-height: 1.45;
  max-width: 36ch;
}

.ogi-reach__channels {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.ogi-reach__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  text-decoration: none !important;
  color: inherit !important;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.ogi-reach__channel:hover,
.ogi-reach__channel:focus-visible {
  border-color: rgba(90, 60, 120, 0.35);
  box-shadow: 0 8px 22px rgba(40, 20, 60, 0.08);
  transform: translateY(-1px);
}

.ogi-reach__ico {
  flex: 0 0 auto;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  line-height: 1;
  color: #fff;
}

.ogi-reach__channel--wa .ogi-reach__ico {
  background: #25d366;
}

.ogi-reach__channel--ig .ogi-reach__ico {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.ogi-reach__channel--mail .ogi-reach__ico {
  background: #ea4335;
}

.ogi-reach__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1 1 auto;
}

.ogi-reach__arrow {
  flex: 0 0 auto;
  margin-left: auto;
  font-size: 1.35rem;
  line-height: 1;
  color: #5a3c78;
  opacity: 0.55;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.ogi-reach__channel:hover .ogi-reach__arrow,
.ogi-reach__channel:focus-visible .ogi-reach__arrow {
  opacity: 1;
  transform: translateX(3px);
}

.ogi-reach__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a6a6a;
  font-weight: 600;
}

.ogi-reach__value {
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 600;
  word-break: break-word;
}

.ogi-reach__cta {
  display: inline-flex !important;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 0 1.35rem !important;
  padding: 1rem 1.25rem !important;
  font-size: 0.95rem !important;
  line-height: 1.3 !important;
  white-space: normal !important;
}

.ogi-reach__intents-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a6a6a;
  font-weight: 600;
}

.ogi-reach__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ogi-reach__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  background: #fff;
  border: 1px solid rgba(90, 60, 120, 0.22);
  color: #3a2a4a !important;
  text-decoration: none !important;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: inherit;
  line-height: 1.3;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.ogi-reach__chip:hover,
.ogi-reach__chip:focus-visible {
  background: #5a3c78;
  border-color: #5a3c78;
  color: #fff !important;
}

/* Quick-edit popup */
body.ogi-reach-modal-open {
  overflow: hidden;
}

.ogi-reach-modal {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.ogi-reach-modal[hidden] {
  display: none !important;
}

.ogi-reach-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 8, 16, 0.55);
}

.ogi-reach-modal__panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  background: #fff;
  border: 1px solid rgba(90, 60, 120, 0.14);
  box-shadow: 0 18px 48px rgba(20, 10, 30, 0.28);
  padding: 1.35rem 1.35rem 1.25rem;
}

.ogi-reach-modal__close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: #5a5a5a;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.ogi-reach-modal__kicker {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a6a6a;
  font-weight: 600;
}

.ogi-reach-modal__title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: #1a1a1a !important;
}

.ogi-reach-modal__lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(26, 26, 26, 0.68);
}

.ogi-reach-modal__label {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a6a6a;
  font-weight: 600;
}

.ogi-reach-modal__textarea {
  width: 100%;
  min-height: 140px;
  resize: vertical;
  border: 1px solid rgba(90, 60, 120, 0.22);
  background: #f7f5fa;
  color: #1a1a1a;
  padding: 0.85rem 0.9rem;
  font-size: 0.98rem;
  line-height: 1.45;
  font-family: inherit;
  margin-bottom: 1rem;
}

.ogi-reach-modal__textarea:focus {
  outline: 2px solid rgba(90, 60, 120, 0.35);
  outline-offset: 1px;
  background: #fff;
}

.ogi-reach-modal__send {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #5a3c78;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.ogi-reach-modal__send:hover,
.ogi-reach-modal__send:focus-visible {
  background: #472f60;
}

@media (max-width: 575px) {
  .ogi-reach {
    padding: 1.25rem 1rem;
  }

  .ogi-reach__ico {
    width: 3rem;
    height: 3rem;
    font-size: 1.55rem;
  }

  .ogi-reach__value {
    font-size: 0.92rem;
  }
}
