/* =========================================================
   TONES GANGNAM — Contact channels (grid + floating widget)
   ========================================================= */

/* ============ CONTACT PAGE — MESSENGER GRID ============ */
.messengers {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
}
.messengers .msg {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1.1rem;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--paper);
  transition: transform .25s, border-color .25s, box-shadow .25s;
  color: var(--ink);
}
.messengers .msg:hover {
  transform: translateX(3px);
  border-color: var(--brand, var(--ink));
  box-shadow: 0 10px 24px -16px rgba(134,115,90,.3);
}
.msg-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--brand, var(--ink));
  color: var(--brand-ink, #fff);
  border-radius: 50%;
}
.msg-icon svg { width: 22px; height: 22px; }
.msg-meat {
  display: flex; flex-direction: column;
  line-height: 1.3;
}
.msg-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
}
.msg-handle {
  font-size: .82rem;
  color: var(--muted);
  margin-top: .15rem;
}

/* "vs-intro" caption above the messenger grid */
.vs-intro {
  font-size: .9rem;
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}

/* ============ FLOATING CONTACT WIDGET ============ */
.float-contact {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex; flex-direction: column;
  align-items: flex-end;
  gap: .8rem;
}

.fc-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-d));
  color: var(--paper);
  border: 0;
  display: grid; place-items: center;
  box-shadow: 0 14px 32px -8px rgba(134,115,90,.55);
  cursor: pointer;
  transition: transform .3s cubic-bezier(.7,0,.2,1), box-shadow .3s;
  position: relative;
}
.fc-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 38px -8px rgba(134,115,90,.6);
}
.fc-toggle svg { width: 26px; height: 26px; }
.fc-toggle-icon {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  transition: opacity .25s, transform .3s cubic-bezier(.7,0,.2,1);
}
.fc-toggle-close { opacity: 0; transform: rotate(-90deg); }
.float-contact.open .fc-toggle-open { opacity: 0; transform: rotate(90deg); }
.float-contact.open .fc-toggle-close { opacity: 1; transform: rotate(0); }
.float-contact.open .fc-toggle { background: var(--accent); }

/* PANEL */
.fc-panel {
  width: 340px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  box-shadow: 0 30px 60px -20px rgba(134,115,90,.4);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity .35s cubic-bezier(.7,0,.2,1),
              transform .35s cubic-bezier(.7,0,.2,1);
}
.float-contact.open .fc-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fc-head {
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-warm);
}
.fc-title {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: .25rem;
}
.fc-sub {
  display: block;
  font-family: var(--italic);
  font-style: italic;
  color: var(--accent);
  font-size: .92rem;
}
.fc-list {
  padding: .5rem 0;
}
.fc-item {
  display: grid;
  grid-template-columns: 40px 1fr 20px;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1.5rem;
  color: var(--ink);
  transition: background .2s, padding-left .25s;
  border-top: 1px solid transparent;
}
.fc-item + .fc-item {
  border-top: 1px solid var(--line-soft);
}
.fc-item:hover {
  background: var(--bg-soft);
  padding-left: 1.7rem;
}
.fc-ic {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--brand, var(--ink));
  color: var(--brand-ink, #fff);
  border-radius: 50%;
}
.fc-ic svg { width: 20px; height: 20px; }
.fc-meat { display: flex; flex-direction: column; line-height: 1.3; }
.fc-name {
  font-family: var(--serif);
  font-size: 1rem;
}
.fc-handle {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .1rem;
}
.fc-go {
  font-family: var(--italic);
  font-style: italic;
  color: var(--accent);
  font-size: 1.1rem;
  transition: transform .25s;
}
.fc-item:hover .fc-go { transform: translateX(3px); }

/* MOBILE */
@media (max-width: 560px) {
  .float-contact { bottom: 1rem; right: 1rem; gap: .6rem; }
  .fc-toggle { width: 54px; height: 54px; }
  .fc-panel { width: calc(100vw - 2rem); max-width: 360px; }
}
