/* ═══════════════════════════════════════════════════════════
   SIGNAASAT - contact.css  (v6)
   Page-specific only. Built on site.css tokens. No @import.
   ═══════════════════════════════════════════════════════════ */

/* section rhythm + hairline rules between blocks */
.ct-sec { padding: var(--sy) 0; }
.ct-bordered { border-top: 1px solid var(--line); }

.ct-sec .story-head { margin-bottom: clamp(28px, 3.5vw, 48px); }
.ct-sec .story-head .h2 { max-width: 18ch; margin-top: 14px; }

/* ─────────────  WAYS TO REACH US  ───────────── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.way-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(24px, 2.6vw, 32px);
  color: var(--ink);
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.way-card:hover {
  background: var(--surface-2);
  border-color: var(--line-2);
  transform: translateY(-3px);
}
.way-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  color: var(--ink-2);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.way-ic i, .way-ic .lucide { width: 20px; height: 20px; }
.way-card:hover .way-ic { color: var(--accent); border-color: var(--accent); }
.way-card h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.way-card p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
}

/* ─────────────  MAP  ───────────── */
.ct-map {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-2);
}
.ct-map iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}

/* ─────────────  RESPONSIVE  ───────────── */
@media (max-width: 900px) {
  .ways-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .ways-grid { grid-template-columns: 1fr; }
  .ct-map iframe { height: 400px; }
}
@media (max-width: 480px) {
  .ct-map iframe { height: 340px; }
}
