/* =============================================================================
   TRACKORIGIN · CONTACT · TO-1.0
   Enterprise contact directory. Editorial brutalist. Self-isolated under .contact-*.
   Aligned with home.css / pricing.css / standard.css / why.css / methodology.css.

   Palette : ink #070d1f · ink-2 #0a1230 · cream #f5efe0 · blue #2D52FF
   Type    : Anton (display) · IBM Plex Mono (metadata) · Inter (body)
   ============================================================================= */


/* ---------- LOCAL TOKENS ------------------------------------------------- */

.contact-hero,
.contact-section {
  --c-ink:         #070d1f;
  --c-ink-2:       #0a1230;
  --c-ink-card:    #0a1230;
  --c-ink-deep:    #050912;
  --c-ink-line:    rgba(245, 239, 224, 0.08);
  --c-ink-line-2:  rgba(245, 239, 224, 0.14);
  --c-cream:       #f5efe0;
  --c-cream-muted: rgba(245, 239, 224, 0.65);
  --c-cream-dim:   rgba(245, 239, 224, 0.40);
  --c-blue:        #2D52FF;
  --c-blue-hover:  #4068ff;
  --c-blue-soft:   rgba(45, 82, 255, 0.08);
  --c-red:         #ff5b5b;
  --c-red-soft:    rgba(255, 91, 91, 0.10);
  --c-green:       #4bd99b;
  --c-green-soft:  rgba(75, 217, 155, 0.10);
}


/* ---------- TYPOGRAPHY UTILITIES ----------------------------------------- */

.contact-display {
  font-family: "Anton", "Impact", "Arial Black", sans-serif;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 0.88;
  color: var(--c-cream);
  text-transform: uppercase;
  font-size: clamp(64px, 9vw, 132px);
  margin: 0;
}

.contact-display--md {
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 0.95;
}

.contact-display__accent { color: var(--c-blue); }

.contact-mono {
  display: inline-block;
  font-family: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-blue);
  font-weight: 500;
}

/* inline code */
.contact-section code,
.contact-hero code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.88em;
  background: rgba(45, 82, 255, 0.10);
  color: var(--c-cream);
  padding: 2px 7px;
  border-radius: 2px;
  letter-spacing: 0;
}


/* ---------- BUTTONS ------------------------------------------------------ */

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 26px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background 0.18s ease, border-color 0.18s ease,
              color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.contact-btn--primary {
  background: var(--c-blue);
  color: var(--c-cream);
}
.contact-btn--primary:hover {
  background: var(--c-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(45, 82, 255, 0.32);
  color: var(--c-cream);
}

.contact-btn--ghost {
  background: transparent;
  color: var(--c-cream);
  border-color: var(--c-ink-line-2);
}
.contact-btn--ghost:hover {
  border-color: var(--c-cream);
  background: rgba(245, 239, 224, 0.04);
  color: var(--c-cream);
}

.contact-btn--full { width: 100%; padding: 18px 26px; font-size: 13px; }

.contact-btn__arrow {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  transition: transform 0.18s ease;
}
.contact-btn:hover .contact-btn__arrow { transform: translateX(4px); }


/* ============================================================================
   HERO
   ============================================================================ */

.contact-hero {
  position: relative;
  background: var(--c-ink);
  border-bottom: 1px solid var(--c-ink-line);
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 78% 18%, rgba(45, 82, 255, 0.14), transparent 60%),
    radial-gradient(700px 500px at 8% 92%, rgba(45, 82, 255, 0.06), transparent 60%);
  pointer-events: none;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 82, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 82, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 78%);
  pointer-events: none;
}

.contact-hero__strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 56px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
  border-bottom: 1px solid var(--c-ink-line);
}

.contact-hero__strip-sep { color: var(--c-blue); opacity: 0.7; }

.contact-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 56px 80px;
}

.contact-hero__eyebrow { margin-bottom: 36px; color: var(--c-cream-muted); }

.contact-hero h1.contact-display {
  margin: 0 0 44px;
  max-width: 18ch;
}

.contact-hero__lede {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--c-cream-muted);
  max-width: 820px;
  margin: 0 0 40px;
}

.contact-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-hero__spec {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--c-ink-line-2);
}


/* ---------- SPEC CELLS (used in hero and §05) ---------------------------- */

.contact-spec-cell {
  padding: 32px 28px 28px;
  border-right: 1px solid var(--c-ink-line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.contact-spec-cell:last-child { border-right: none; }

.contact-spec-cell__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
}

.contact-spec-cell__value {
  font-family: "Anton", "Impact", sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--c-cream);
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.contact-spec-cell__value--blue { color: var(--c-blue); }
.contact-spec-cell__value--text { font-size: clamp(32px, 3.6vw, 52px); }

.contact-spec-cell__unit {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: 0.32em;
  letter-spacing: 0.04em;
  color: var(--c-cream-muted);
}


/* ============================================================================
   SECTION (general)
   ============================================================================ */

.contact-section {
  background: var(--c-ink);
  padding: 110px 56px;
  border-bottom: 1px solid var(--c-ink-line);
  scroll-margin-top: 96px;
}

.contact-section--entity {
  padding: 80px 56px;
  background: var(--c-ink-deep);
  border-bottom: none;
}

.contact-section__head {
  max-width: 1320px;
  margin: 0 auto 56px;
}

.contact-section__head .contact-mono { margin-bottom: 24px; }

.contact-section__head .contact-display--md {
  margin: 0;
  max-width: 22ch;
}

.contact-section__lede {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-cream-muted);
  max-width: 720px;
  margin: 28px 0 0;
}


/* ---------- PROSE -------------------------------------------------------- */

.contact-prose p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-cream-muted);
  margin: 0 0 20px;
  max-width: 64ch;
}

.contact-prose p:last-child { margin-bottom: 0; }

.contact-prose strong { color: var(--c-cream); font-weight: 600; }
.contact-prose em     { color: var(--c-cream); font-style: italic; }

.contact-prose a {
  color: var(--c-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 82, 255, 0.30);
  transition: color 0.18s, border-color 0.18s;
}
.contact-prose a:hover { color: var(--c-cream); border-bottom-color: var(--c-cream); }

.contact-prose-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}

.contact-prose-grid--padded { margin: 56px auto 0; }


/* ============================================================================
   §02 — USE CASE LIST
   ============================================================================ */

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--c-ink-line-2);
}

.contact-list li {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-ink-line);
  align-items: baseline;
}

.contact-list li span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-blue);
  font-weight: 600;
}

.contact-list li p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-cream);
  margin: 0;
}


/* ============================================================================
   §01 — FORM
   ============================================================================ */

.contact-form-layout {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.contact-office {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--c-ink-line);
}

.contact-office .contact-mono { margin-bottom: 8px; }

.contact-office__city {
  font-family: "Anton", "Impact", sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--c-cream);
  text-transform: uppercase;
  margin: 4px 0 14px;
}

.contact-office p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-cream-muted);
  margin: 0;
}


.contact-note {
  margin-top: 32px;
  padding: 24px 26px;
  background: var(--c-ink-deep);
  border: 1px solid var(--c-ink-line-2);
  position: relative;
}

.contact-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--c-blue);
}

.contact-note__kicker { margin-bottom: 12px; }

.contact-note p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--c-cream-muted);
  margin: 0;
}


/* form card */
.contact-form-card {
  background: var(--c-ink-card);
  border: 1px solid var(--c-ink-line-2);
  padding: clamp(28px, 3vw, 44px);
}

.contact-field {
  margin-bottom: 22px;
}

/* business-unit field gets visual emphasis as the routing decision */
.contact-field--featured {
  padding: 22px 22px 18px;
  margin: 4px -4px 28px;
  background: rgba(45, 82, 255, 0.06);
  border: 1px solid rgba(45, 82, 255, 0.20);
  border-radius: 2px;
}

.contact-field--featured label {
  color: var(--c-blue);
}

.contact-field label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
  margin-bottom: 8px;
}

.contact-field__req { color: var(--c-blue); }

.contact-field input,
.contact-field textarea,
.contact-field select {
  display: block;
  width: 100%;
  background: var(--c-ink-deep);
  border: 1px solid var(--c-ink-line-2);
  color: var(--c-cream);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 2px;
  transition: border-color 0.18s, background 0.18s;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  outline: none;
  border-color: var(--c-blue);
  background: #0e1a3a;
}

.contact-field textarea {
  min-height: 200px;
  resize: vertical;
  font-family: "Inter", system-ui, sans-serif;
}

.contact-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%232D52FF' stroke-width='1.5' fill='none' stroke-linecap='square'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-field--featured select {
  background-color: var(--c-ink-deep);
  border-color: rgba(45, 82, 255, 0.30);
  font-weight: 500;
}

.contact-field__hint {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--c-cream-dim);
  margin-top: 8px;
}

.contact-alert {
  padding: 14px 16px;
  margin-bottom: 22px;
  border: 1px solid var(--c-ink-line-2);
  border-radius: 2px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.contact-alert--error {
  border-color: var(--c-red);
  color: #ffb3b3;
  background: var(--c-red-soft);
}

.contact-alert--ok {
  border-color: var(--c-green);
  color: #a5dcbc;
  background: var(--c-green-soft);
}


/* ============================================================================
   §03 — SECURITY DISCLOSURE
   ============================================================================ */

.contact-binding-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  border-top: 1px solid var(--c-ink-line-2);
}

.contact-binding-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--c-ink-line);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-cream-muted);
}

.contact-binding-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 15px;
  color: var(--c-blue);
  font-weight: 500;
}

.contact-binding-list li strong { color: var(--c-cream); font-weight: 600; }
.contact-binding-list li code {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92em;
  background: rgba(45, 82, 255, 0.10);
  color: var(--c-cream);
  padding: 2px 7px;
  border-radius: 2px;
}


.contact-specimen {
  max-width: 1320px;
  margin: 48px auto 0;
  border: 1px solid var(--c-ink-line-2);
  background: var(--c-ink-deep);
  overflow: hidden;
}

.contact-specimen__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 22px;
  border-bottom: 1px solid var(--c-ink-line);
  background: rgba(0, 0, 0, 0.24);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
}

.contact-specimen__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-blue);
  box-shadow: 0 0 12px rgba(45, 82, 255, 0.6);
}

.contact-specimen__body {
  margin: 0;
  padding: 28px 26px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--c-cream);
  background: var(--c-ink-deep);
  overflow-x: auto;
  white-space: pre;
}


/* ============================================================================
   §04 — REGULATORY BODIES (4-card grid)
   ============================================================================ */

.contact-bodies {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-ink-line-2);
  border: 1px solid var(--c-ink-line-2);
}

.contact-body-card {
  background: var(--c-ink-card);
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  transition: background 0.2s ease;
}

.contact-body-card:hover { background: #0c1638; }

.contact-body-card__region {
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.contact-body-card__title {
  font-family: "Anton", "Impact", sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--c-cream);
  text-transform: uppercase;
  margin: 0;
}

.contact-body-card p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-cream-muted);
  margin: 0;
  flex: 1;
}

.contact-body-card__email {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--c-ink-line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-blue);
  overflow-wrap: anywhere;
}


/* ============================================================================
   §05 — OPERATIONAL CONTEXT SPEC GRID
   ============================================================================ */

.contact-ops-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--c-ink-line-2);
}

.contact-ops-grid .contact-spec-cell {
  background: var(--c-ink-card);
  border-right: 1px solid var(--c-ink-line);
}

.contact-ops-grid .contact-spec-cell:last-child { border-right: none; }


/* ============================================================================
   REGISTERED ENTITY
   ============================================================================ */

.contact-entity {
  max-width: 1320px;
  margin: 0 auto;
  border: 1px solid var(--c-ink-line-2);
  background: var(--c-ink-card);
  overflow: hidden;
}

.contact-entity__strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--c-ink-line);
  background: rgba(0, 0, 0, 0.24);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
}

.contact-entity__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-blue);
  box-shadow: 0 0 12px rgba(45, 82, 255, 0.6);
}

.contact-entity__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-ink-line);
}

.contact-entity__col {
  background: var(--c-ink-card);
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact-entity__label { margin-bottom: 8px; }

.contact-entity__value {
  font-family: "Anton", "Impact", sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--c-cream);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.contact-entity__col p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-cream-muted);
  margin: 0;
}

.contact-entity__col p code {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.88em;
  color: var(--c-blue);
  background: transparent;
  padding: 0;
}


/* ============================================================================
   RESPONSIVE — tablet (≤1100px)
   ============================================================================ */

@media (max-width: 1100px) {
  .contact-hero__strip          { padding: 16px 32px; font-size: 9px; gap: 10px; }
  .contact-hero__inner          { padding: 72px 32px 56px; }
  .contact-hero__spec           { padding: 0 32px 72px; grid-template-columns: repeat(2, 1fr); }
  .contact-hero__spec .contact-spec-cell:nth-child(2) { border-right: none; }
  .contact-hero__spec .contact-spec-cell:nth-child(3),
  .contact-hero__spec .contact-spec-cell:nth-child(4) { border-top: 1px solid var(--c-ink-line); }

  .contact-section              { padding: 88px 32px; }
  .contact-section--entity      { padding: 64px 32px; }
  .contact-section__head        { margin-bottom: 44px; }
  .contact-prose-grid           { grid-template-columns: 1fr; gap: 32px; }

  .contact-form-layout          { grid-template-columns: 1fr; gap: 36px; }

  .contact-bodies               { grid-template-columns: 1fr; }

  .contact-ops-grid             { grid-template-columns: repeat(2, 1fr); }
  .contact-ops-grid .contact-spec-cell:nth-child(2) { border-right: none; }
  .contact-ops-grid .contact-spec-cell:nth-child(3),
  .contact-ops-grid .contact-spec-cell:nth-child(4) { border-top: 1px solid var(--c-ink-line); }

  .contact-entity__body         { grid-template-columns: 1fr; }
  .contact-entity__col          { padding: 26px 24px 22px; }
}


/* ============================================================================
   RESPONSIVE — mobile (≤640px)
   ============================================================================ */

@media (max-width: 640px) {
  .contact-hero__strip          {
    padding: 14px 20px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }
  .contact-hero__inner          { padding: 48px 20px 40px; }
  .contact-hero__eyebrow        { margin-bottom: 28px; font-size: 10px; letter-spacing: 0.16em; }
  .contact-hero h1.contact-display { margin-bottom: 32px; }
  .contact-hero__lede           { font-size: 16px; margin-bottom: 28px; }
  .contact-hero__actions        { flex-direction: column; align-items: stretch; }
  .contact-hero__actions .contact-btn { width: 100%; }

  .contact-hero__spec           { padding: 0 20px 56px; grid-template-columns: 1fr; }
  .contact-hero__spec .contact-spec-cell {
    border-right: none;
    border-bottom: 1px solid var(--c-ink-line);
    border-top: none !important;
    padding: 22px 22px;
  }
  .contact-hero__spec .contact-spec-cell:last-child { border-bottom: none; }
  .contact-spec-cell__value     { font-size: 48px; }

  .contact-section              { padding: 64px 20px; }
  .contact-section--entity      { padding: 56px 20px; }
  .contact-section__head        { margin-bottom: 36px; }
  .contact-section__lede        { font-size: 15px; }

  .contact-list li              {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }
  .contact-list li p            { font-size: 15px; }

  .contact-form-card            { padding: 24px 22px; }
  .contact-field input,
  .contact-field textarea,
  .contact-field select         { padding: 11px 12px; font-size: 15px; }
  .contact-field--featured      { padding: 18px 18px 14px; margin: 4px 0 24px; }
  .contact-office__city         { font-size: 26px; }
  .contact-note                 { padding: 20px 22px; }

  .contact-binding-list li      { font-size: 14.5px; padding: 12px 0 12px 24px; }
  .contact-binding-list li::before { top: 12px; }

  .contact-specimen             { margin-top: 32px; }
  .contact-specimen__body       { padding: 22px 20px; font-size: 12px; }

  .contact-bodies               { grid-template-columns: 1fr; }
  .contact-body-card            { padding: 26px 22px 22px; }
  .contact-body-card__title     { font-size: 22px; }

  .contact-ops-grid             { grid-template-columns: 1fr; }
  .contact-ops-grid .contact-spec-cell {
    border-right: none;
    border-bottom: 1px solid var(--c-ink-line);
    border-top: none !important;
    padding: 22px 22px;
  }
  .contact-ops-grid .contact-spec-cell:last-child { border-bottom: none; }

  .contact-entity__body         { grid-template-columns: 1fr; }
  .contact-entity__strip        { padding: 12px 18px; font-size: 9px; letter-spacing: 0.18em; }
  .contact-entity__value        { font-size: 22px; }
}


/* ============================================================================
   MOTION PREFERENCES
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
  .contact-btn,
  .contact-btn__arrow,
  .contact-body-card,
  .contact-field input,
  .contact-field textarea,
  .contact-field select {
    transition: none;
  }
}
