/*
 * Contact — “Get in touch” band: wide layout, hero phone row, two-up offices.
 */
html[data-wd-build="watchdog"] body.wd-surface.idx:not(.idx-home) .idx .get-in-touch-band,
html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band {
  --touch-surface: #0c0c0f;
  --touch-card-a: #32323a;
  --touch-card-b: #222228;
  --touch-card-edge: rgb(255 255 255 / 0.11);
  --touch-line-soft: rgb(255 255 255 / 0.12);
  --touch-note: #9b9ba8;

  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 100% 85% at 85% -20%, rgb(var(--idx-accent-rgb) / 0.16), transparent 52%),
    radial-gradient(ellipse 70% 55% at -5% 105%, rgb(70 110 255 / 0.09), transparent 48%),
    linear-gradient(168deg, rgb(0 0 0 / 0.55) 0%, transparent 38%),
    url("../assets/wd-bg-scatter-tile.svg") 50% 20% / min(980px, 155vw) repeat,
    var(--touch-surface);
  border-top-color: rgb(var(--idx-accent-rgb) / 0.12);
  border-bottom-color: rgb(255 255 255 / 0.06);
  padding-top: clamp(2.35rem, 5vw, 3.6rem);
  padding-bottom: clamp(2.35rem, 5vw, 3.6rem);
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: min(72%, 520px);
  background: radial-gradient(ellipse 55% 70% at 50% 0%, rgb(var(--idx-accent-rgb) / 0.11), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-shell {
  position: relative;
  z-index: 1;
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(1.65rem, 3.5vw, 2.65rem);
}

/* ─── Intro ─── */
html[data-wd-build="watchdog"] body.wd-surface.idx:not(.idx-home) .idx .get-in-touch-band .touch-band-header,
html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-header {
  margin-bottom: 0;
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-kicker {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2.2vw, 1.35rem);
  margin-bottom: 0.65rem;
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-kicker::after {
  content: "";
  flex: 1 1 auto;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgb(var(--idx-accent-rgb) / 0.55),
    rgb(var(--idx-accent-rgb) / 0.08) 35%,
    var(--touch-line-soft) 70%,
    rgb(255 255 255 / 0.02)
  );
  min-width: 2rem;
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-eyebrow.section-eyebrow {
  border-top: 0;
  padding-top: 0;
  padding-left: 1rem;
  margin: 0;
  max-width: none;
  flex: 0 0 auto;
  color: rgb(250 250 250 / 0.95);
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-eyebrow.section-eyebrow::before {
  top: 0.1rem;
  width: 7px;
  box-shadow: 0 0 18px rgb(var(--idx-accent-rgb) / 0.35);
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-title {
  margin: 0 0 0.75rem;
  font-family: var(--v4-display, var(--idx-display));
  font-weight: 700;
  font-size: clamp(2.35rem, 7vw, 3.85rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: none;
  color: #fff;
  text-shadow: 0 0 60px rgb(255 255 255 / 0.06);
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-title-wedge {
  color: var(--idx-accent);
  text-shadow: 0 0 40px rgb(var(--idx-accent-rgb) / 0.45);
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-lead {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.5;
  color: rgb(255 255 255 / 0.72);
}

@media (min-width: 1000px) {
  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-header {
    display: grid;
    grid-template-columns: 1fr minmax(14rem, 0.38fr);
    grid-template-rows: auto auto;
    column-gap: clamp(1.75rem, 4vw, 3.25rem);
    row-gap: 0.5rem;
    align-items: end;
  }

  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-kicker {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 0.35rem;
  }

  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-title {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
    align-self: end;
  }

  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-lead {
    grid-column: 2;
    grid-row: 2;
    max-width: none;
    margin: 0;
    padding: 0.65rem 0 0.5rem 1.35rem;
    border-left: 4px solid var(--idx-accent);
    align-self: end;
    box-shadow: inset 12px 0 32px -28px rgb(var(--idx-accent-rgb) / 0.35);
  }
}

/* ─── Card grid: hero + two-up ─── */
html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-cards.contact-content {
  gap: clamp(1rem, 2.2vw, 1.35rem);
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content.contact-info-only {
  max-width: none;
}

@media (min-width: 720px) {
  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .touch-band-cards > .info-item-touch-hero {
    grid-column: 1 / -1;
  }
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item,
html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content address.info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: clamp(1.2rem, 2.6vw, 1.55rem) clamp(1.25rem, 2.8vw, 1.65rem);
  padding-left: calc(0.45rem + 5px);
  background:
    linear-gradient(145deg, rgb(var(--idx-accent-rgb) / 0.07) 0%, transparent 42%),
    linear-gradient(165deg, var(--touch-card-a) 0%, var(--touch-card-b) 55%, #14141a 100%);
  border: 1px solid var(--touch-card-edge);
  border-left: 5px solid var(--idx-accent);
  border-radius: clamp(10px, 1.2vw, 14px);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.07) inset,
    0 20px 50px rgb(0 0 0 / 0.5),
    0 0 0 1px rgb(0 0 0 / 0.35) inset;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item:hover,
html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content address.info-item:hover {
  border-color: rgb(var(--idx-accent-rgb) / 0.28);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.08) inset,
    0 0 0 1px rgb(var(--idx-accent-rgb) / 0.18),
    0 26px 56px rgb(0 0 0 / 0.58);
  transform: translateY(-2px);
}

/* Hero phone strip */
html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item-touch-hero {
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.65rem);
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.35rem, 3vw, 2rem);
  padding-left: calc(0.5rem + 6px);
  border-left-width: 6px;
  background:
    radial-gradient(ellipse 90% 120% at 0% 50%, rgb(var(--idx-accent-rgb) / 0.2), transparent 58%),
    linear-gradient(145deg, rgb(var(--idx-accent-rgb) / 0.12) 0%, transparent 50%),
    linear-gradient(165deg, #3a3a44 0%, #26262e 45%, #15151c 100%);
}

@media (min-width: 640px) {
  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item-touch-hero {
    grid-template-columns: auto 1fr auto;
  }

  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item-touch-hero .info-item-touch-hero-badge {
    margin: 0;
    margin-left: 0.35rem;
    padding: 0.55rem 0.85rem;
    max-width: 11rem;
    text-align: center;
    font-size: 0.78rem;
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--v4-display, var(--idx-display));
    color: var(--idx-accent-ink);
    background: linear-gradient(180deg, var(--idx-accent) 0%, var(--idx-accent-mid, var(--idx-accent)) 100%);
    border-radius: 8px;
    border: 1px solid rgb(0 0 0 / 0.2);
    box-shadow: 0 10px 28px rgb(0 0 0 / 0.35);
  }
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item-touch-hero .info-icon {
  width: 1.85rem;
  height: 1.85rem;
  margin-top: 0;
  padding: 0.95rem;
  box-sizing: content-box;
  color: var(--idx-accent-ink);
  background: radial-gradient(circle at 32% 28%, rgb(255 255 255 / 0.45), transparent 55%), var(--idx-accent);
  border-radius: 50%;
  border: 1px solid rgb(0 0 0 / 0.15);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.25) inset,
    0 12px 28px rgb(var(--idx-accent-rgb) / 0.35);
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item-touch-hero-main h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
  color: rgb(255 255 255 / 0.92);
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item-touch-hero-line {
  margin: 0;
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item-touch-hero-line a {
  font-family: var(--v4-display, var(--idx-display));
  font-size: clamp(2.15rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  text-underline-offset: 0;
  border-bottom: 0;
  display: inline-block;
  padding-bottom: 0.08em;
  background: linear-gradient(90deg, var(--idx-accent), var(--idx-accent-deep, var(--idx-accent))) 0 100% / 100% 4px no-repeat;
  transition: color 0.15s ease, filter 0.15s ease;
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item-touch-hero-line a:hover {
  color: #fff;
  filter: brightness(1.08);
}

@media (max-width: 639px) {
  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item-touch-hero {
    grid-template-columns: auto 1fr;
  }

  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item-touch-hero .info-item-touch-hero-badge {
    grid-column: 1 / -1;
    margin-top: 0.65rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgb(255 255 255 / 0.12);
    text-align: center;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--v4-display, var(--idx-display));
    color: var(--touch-note);
  }
}

/* Office cards */
html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content address.info-item .info-icon {
  width: 1.55rem;
  height: 1.55rem;
  margin-top: 0.15rem;
  padding: 0.65rem;
  box-sizing: content-box;
  color: var(--idx-accent-ink);
  background: linear-gradient(160deg, var(--idx-accent) 0%, var(--idx-accent-deep, #e0d800) 100%);
  border-radius: 12px;
  border: 1px solid rgb(0 0 0 / 0.12);
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.35);
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content address.info-item h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #fff;
  margin-bottom: 0.55rem;
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content address.info-item p {
  color: rgb(255 255 255 / 0.92);
  font-size: 1.02rem;
  line-height: 1.5;
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content address.info-item a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
  text-decoration-color: var(--idx-accent);
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content address.info-item a:hover {
  text-decoration-color: var(--idx-accent-deep);
}

html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item a:focus-visible,
html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content address.info-item a:focus-visible,
html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item-touch-hero-line a:focus-visible {
  outline: 2px solid var(--idx-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item,
  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content address.info-item,
  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item-touch-hero {
    transition: none;
  }

  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item:hover,
  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content address.info-item:hover,
  html[data-wd-build="watchdog"] body.wd-surface.idx .idx .get-in-touch-band .contact-content .info-item-touch-hero:hover {
    transform: none;
  }
}
