/* CONTACTS */
.contacts-grid {
  display: grid; grid-template-columns: 1fr 1.45fr;
  gap: 24px; align-items: stretch;
}
.contact-card {
  padding: 36px; border: 1px solid var(--line-2);
  border-radius: var(--r-card); background: var(--panel);
  display: grid; gap: 6px; align-content: start;
}
.contact-card h2 { font-size: clamp(26px, 2.6vw, 34px); margin-bottom: 6px; }
.contact-card > p {
  color: var(--ink-mid); font-size: 14.5px;
  line-height: 1.5; margin-bottom: 20px;
}
.contact-row {
  display: grid; grid-template-columns: 40px 1fr;
  gap: 14px; align-items: start;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.contact-row:first-of-type { border-top: none; }
.contact-row .ic {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(236,28,36,0.1); color: var(--red-soft);
}
.contact-row .ic svg { width: 18px; height: 18px; }
.contact-row small {
  display: block; color: var(--ink-dim);
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 4px;
}
.contact-row strong, .contact-row a {
  display: block; font-weight: 500; font-size: 15.5px;
  color: var(--ink); line-height: 1.4;
}
.contact-row a:hover { color: var(--red-soft); }
.contact-socials { display: flex; gap: 10px; margin-top: 12px; }
.social-btn {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 11px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.03);
  color: var(--ink); transition: all .2s;
}
.social-btn:hover { transform: translateY(-2px); border-color: var(--red); color: var(--red-soft); }
.social-btn svg { width: 20px; height: 20px; fill: currentColor; }
.contact-map {
  position: relative; min-height: 480px;
  border-radius: var(--r-card); overflow: hidden;
  border: 1px solid var(--line); background: #1a1a20;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.map-overlay {
  position: absolute; left: 20px; bottom: 20px;
  padding: 16px 20px; border-radius: 12px;
  background: rgba(10,10,12,0.92); backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 14px;
  max-width: calc(100% - 40px);
}
.map-overlay .ic {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: white; flex-shrink: 0;
}
.map-overlay .ic svg { width: 20px; height: 20px; }
.map-overlay small {
  display: block; font-size: 10.5px; color: var(--ink-dim);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px;
}
.map-overlay strong { display: block; font-weight: 500; font-size: 14px; line-height: 1.35; }

/* FLOATING SOCIALS */
.floating-cta {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  display: grid; gap: 10px;
}
.floating-cta a {
  display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 50%;
  color: white;
  box-shadow: 0 18px 40px -8px rgba(0,0,0,0.6);
  transition: transform .2s, filter .2s;
}
.floating-cta a:hover { transform: translateY(-3px); filter: brightness(1.08); }
.floating-cta a svg { width: 26px; height: 26px; fill: currentColor; }
.floating-cta .tg { background: linear-gradient(180deg, #32b8f2, #1990d4); }
.floating-cta .wa { background: linear-gradient(180deg, #38e37a, #16b555); }

/* FOOTER */
.footer {
  padding: 50px 0 28px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-col h4 {
  font-family: "Unbounded", sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 18px;
}
.footer-col p, .footer-col a, .footer-col span {
  display: block; color: var(--ink-dim);
  font-size: 13.5px; line-height: 1.75;
}
.footer-col a:hover { color: var(--ink); }
.footer-col .footer-logo { margin-bottom: 14px; }
.footer-col .footer-about {
  color: var(--ink-mid); font-size: 13.5px;
  line-height: 1.65; max-width: 280px;
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--line);
  color: var(--ink-dim); font-size: 12.5px;
}
.footer-bottom .made { display: flex; align-items: center; gap: 6px; }
