/* ==========================================================================
   Global Presence — revamped (contact page).
   Monochrome, always-visible office cards over a faded globe backdrop.
   Replaces the legacy clipped globe/pin card design. Fonts shared with Our Work.
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap");

.dd-gp {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% -10%, #262626 0%, #131313 45%, #050505 100%);
  padding-block: clamp(3.5rem, 7vw, 7rem);
}
.dd-gp * { box-sizing: border-box; }

/* faded grayscale globe backdrop */
.dd-gp__globe {
  position: absolute; top: -8%; left: 50%; transform: translateX(-50%);
  width: min(1100px, 130%); max-width: none; height: auto;
  filter: grayscale(1) brightness(0.9) contrast(1.05);
  opacity: 0.22; pointer-events: none; user-select: none; z-index: 0;
  -webkit-mask-image: radial-gradient(circle at 50% 42%, #000 45%, transparent 72%);
          mask-image: radial-gradient(circle at 50% 42%, #000 45%, transparent 72%);
}

.dd-gp__inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding-inline: clamp(1rem, 4vw, 2rem); }

/* header */
.dd-gp__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.dd-gp__eyebrow::before { content: ""; width: 28px; height: 1px; background: rgba(255,255,255,0.4); }
.dd-gp__title {
  margin: 20px 0 0 !important;
  font-family: "Archivo", "Poppins", sans-serif; font-weight: 800;
  font-size: clamp(1.9rem, 4.2vw, 3.6rem) !important; line-height: 1.0 !important;
  letter-spacing: -0.025em !important; color: #fff !important; max-width: 20ch;
}
.dd-gp__intro {
  margin: 18px 0 0 !important; max-width: 60ch;
  font-family: "Inter", "Poppins", sans-serif; font-size: clamp(0.95rem, 1.4vw, 1.05rem) !important;
  line-height: 1.6 !important; color: rgba(255,255,255,0.6) !important;
}

/* grid */
.dd-gp__grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.dd-gp__card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px; padding: 28px;
  transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .35s, background-color .35s;
}
.dd-gp__card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.05); }

.dd-gp__cardhead { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dd-gp__tag {
  font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; padding: 5px 12px;
}
.dd-gp__num {
  font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 12px; color: rgba(255,255,255,0.3);
}
.dd-gp__city {
  margin: 22px 0 0 !important;
  font-family: "Archivo", "Poppins", sans-serif; font-weight: 700;
  font-size: 26px !important; line-height: 1.15 !important; letter-spacing: -0.02em;
  color: #fff !important;
}
.dd-gp__blurb {
  margin: 12px 0 0 !important;
  font-family: "Inter", "Poppins", sans-serif; font-size: 14px !important; line-height: 1.6 !important;
  color: rgba(255,255,255,0.55) !important;
}
.dd-gp__meta {
  margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 14px;
}
.dd-gp__row { display: flex; align-items: flex-start; gap: 12px; }
.dd-gp__ico { flex: 0 0 auto; width: 18px; height: 18px; color: rgba(255,255,255,0.55); margin-top: 1px; }
.dd-gp__ico svg { width: 100%; height: 100%; display: block; }
.dd-gp__addr {
  margin: 0 !important; font-family: "Inter", "Poppins", sans-serif; font-size: 14px !important;
  line-height: 1.55 !important; color: rgba(255,255,255,0.72) !important;
}
.dd-gp__phone {
  font-family: "Inter", "Poppins", sans-serif; font-size: 15px; font-weight: 500;
  color: #fff; text-decoration: none; letter-spacing: 0.01em;
  transition: opacity .25s;
}
.dd-gp__phone:hover { opacity: 0.72; }

/* responsive */
@media (max-width: 991px) { .dd-gp__grid { grid-template-columns: 1fr; gap: 18px; max-width: 560px; } }
