/* ==========================================================================
   Workiy Inc. — site stylesheet
   Design system: "Systems of record → governed data → AI in production"
   Palette : deep institutional navy, one electric blue, amber for evidence
   Type    : Archivo (structural grotesque) + IBM Plex Sans (technical humanist)
   ========================================================================== */

/* --------------------------------------------------------------- tokens */
:root {
  --ink:        #0d1b2e;
  --ink-2:      #14294a;
  --ink-3:      #1d3a63;
  --slate:      #445872;
  --slate-2:    #6b7f99;
  --paper:      #ffffff;
  --mist:       #f3f6fa;
  --mist-2:     #e8eef6;
  --line:       #dce4ee;
  --line-dark:  rgba(255, 255, 255, .16);

  --brand:      #1f4fd8;
  --brand-lift: #3d6cf0;
  --brand-soft: #eaf0ff;
  --amber:      #f2a93b;
  --teal:       #12907a;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;

  --wrap:      1180px;
  --wrap-tight: 780px;
  --gutter:    clamp(20px, 5vw, 40px);
  --section:   clamp(60px, 8vw, 108px);
  --radius:    4px;
  --radius-lg: 8px;

  --t-fast: 140ms cubic-bezier(.4, 0, .2, 1);
  --t-mid:  240ms cubic-bezier(.4, 0, .2, 1);
}

/* --------------------------------------------------------------- reset  */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

:focus-visible {
  outline: 3px solid var(--brand-lift);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 20px;
  font-weight: 600; border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }

/* --------------------------------------------------------------- type   */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.021em;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 1.5rem + 3.1vw, 4rem); letter-spacing: -.028em; }
h2 { font-size: clamp(1.75rem, 1.25rem + 2vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem); line-height: 1.2; }
h4 { font-size: 1.0625rem; line-height: 1.3; letter-spacing: -.01em; }

p { margin: 0 0 1.1em; max-width: 72ch; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.0625rem, 1rem + .45vw, 1.3125rem);
  line-height: 1.55;
  color: var(--slate);
  max-width: 62ch;
}

.kicker {
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--brand);
  display: block;
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--amber);
  vertical-align: middle;
  margin-right: 10px;
  position: relative; top: -2px;
}

.muted { color: var(--slate); }

/* --------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-tight { max-width: var(--wrap-tight); }

.section { padding-block: var(--section); }
.section-sm { padding-block: clamp(44px, 5.5vw, 72px); }
.section-mist { background: var(--mist); }
.section-ink { background: var(--ink); color: #dce6f2; }
.section-ink h2, .section-ink h3, .section-ink h4 { color: #fff; }
.section-ink .lede, .section-ink .muted { color: #a9bdd6; }
.section-ink a { color: #9dbcff; }

.section-head { max-width: 68ch; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head p:last-child { margin-bottom: 0; }

.grid { display: grid; gap: clamp(18px, 2.2vw, 28px); }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.split-narrow { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }

@media (max-width: 980px) {
  .g-3, .g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .split-narrow { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 620px) {
  .g-2, .g-3, .g-4 { grid-template-columns: minmax(0, 1fr); }
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: .9375rem; font-weight: 600; letter-spacing: -.005em;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  text-decoration: none !important;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: #1740b8; color: #fff; }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--mist); }

.btn-on-ink { background: #fff; color: var(--ink); }
.btn-on-ink:hover { background: #e4ecf8; color: var(--ink); }

.btn-outline-ink { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-ink:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.textlink {
  font-family: var(--font-display);
  font-weight: 600; font-size: .9375rem;
  display: inline-block;
  border-bottom: 1.5px solid var(--brand-soft);
  padding-bottom: 2px;
  transition: border-color var(--t-fast);
}
.textlink:hover { border-bottom-color: var(--brand); text-decoration: none; }

/* --------------------------------------------------------------- header */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.masthead-inner {
  display: flex; align-items: center; gap: 28px;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 30px; height: 30px; flex-shrink: 0; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.375rem; font-weight: 700;
  letter-spacing: -.035em;
  color: var(--ink);
}

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: .9375rem; font-weight: 500;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-display);
}
.nav-link:hover { background: var(--mist); text-decoration: none; }
.nav-link[aria-expanded="true"] { background: var(--mist); }
.nav-caret { width: 9px; height: 9px; transition: transform var(--t-fast); opacity: .55; }
.nav-link[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }

.nav-cta { margin-left: 12px; }

/* dropdown + mega */
.panel {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px -16px rgba(13, 27, 46, .28);
  padding: 14px;
  min-width: 250px;
  display: none;
}
.panel[data-open="true"] { display: block; }
.panel-mega {
  left: 50%; right: auto; transform: translateX(-50%);
  width: min(1080px, calc(100vw - 40px));
  padding: 28px 30px 24px;
}
.mega-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 26px; }
.mega-col-head {
  font-family: var(--font-display);
  font-size: .9375rem; font-weight: 700; letter-spacing: -.015em;
  color: var(--ink);
  padding-bottom: 9px; margin-bottom: 9px;
  border-bottom: 2px solid var(--amber);
  display: block;
}
.mega-col-head:hover { color: var(--brand); text-decoration: none; }
.panel a.menu-link {
  display: block;
  font-size: .875rem; line-height: 1.35;
  color: var(--slate);
  padding: 6px 8px; margin-left: -8px;
  border-radius: 3px;
}
.panel a.menu-link:hover { color: var(--brand); background: var(--brand-soft); text-decoration: none; }
.mega-foot {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}
.mega-foot p { font-size: .875rem; color: var(--slate); margin: 0; max-width: 62ch; }

.burger {
  display: none;
  margin-left: auto;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 9px 11px; cursor: pointer;
}
.burger span { display: block; width: 19px; height: 2px; background: var(--ink); margin: 4px 0; }

/* mobile drawer */
.drawer {
  display: none;
  position: fixed; inset: 74px 0 0;
  background: #fff; z-index: 99;
  overflow-y: auto;
  padding: 20px var(--gutter) 60px;
}
.drawer[data-open="true"] { display: block; }
.drawer details { border-bottom: 1px solid var(--line); }
.drawer summary {
  font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem;
  padding: 16px 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.drawer summary::-webkit-details-marker { display: none; }
.drawer summary::after { content: "+"; font-size: 1.25rem; color: var(--slate); font-weight: 400; }
.drawer details[open] summary::after { content: "–"; }
.drawer .drawer-links { padding: 0 0 16px; }
.drawer .drawer-links a { display: block; padding: 9px 0; color: var(--slate); font-size: .9375rem; }
.drawer .drawer-group { font-family: var(--font-display); font-size: .8125rem; font-weight: 700; color: var(--ink); padding-top: 12px; }
.drawer > a.drawer-top {
  display: block; padding: 16px 0; border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem; color: var(--ink);
}
.drawer .btn { width: 100%; margin-top: 24px; }

@media (max-width: 1080px) {
  .nav, .nav-cta { display: none; }
  .burger { display: block; }
}

/* --------------------------------------------------------------- hero   */
.hero {
  background: var(--ink);
  background-image:
    radial-gradient(900px 460px at 88% -8%, rgba(31, 79, 216, .34), transparent 62%),
    radial-gradient(620px 380px at 4% 108%, rgba(18, 144, 122, .18), transparent 60%);
  color: #fff;
  padding-block: clamp(56px, 8vw, 104px);
  border-bottom: 1px solid var(--ink-2);
}
.hero h1 { color: #fff; }
.hero .lede { color: #b6c8de; }
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: .8125rem; font-weight: 600;
  color: var(--amber);
  margin-bottom: 18px;
  display: block;
}
.hero-home { padding-block: clamp(64px, 9vw, 116px); }
.hero-home h1 { max-width: 17ch; }
.hero-meta {
  margin-top: 34px; padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 14px 34px;
}
.hero-meta span { font-size: .875rem; color: #93aac6; }
.hero-meta b { color: #fff; font-weight: 600; }

/* the signature element: the delivery spine */
.spine { margin-top: 44px; }
.spine-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.03);
}
.spine-node {
  padding: 22px 22px 24px;
  border-right: 1px solid var(--line-dark);
  position: relative;
}
.spine-node:last-child { border-right: 0; }
.spine-node::before {
  content: "";
  position: absolute; top: 0; left: 0; height: 3px; width: 100%;
  background: var(--line-dark);
}
.spine-node[data-stage="1"]::before { background: var(--teal); }
.spine-node[data-stage="2"]::before { background: var(--brand-lift); }
.spine-node[data-stage="3"]::before { background: var(--amber); }
.spine-label {
  font-family: var(--font-display);
  font-size: .75rem; font-weight: 700; color: #8fa6c2;
  margin-bottom: 8px; display: block;
}
.spine-node h4 { color: #fff; margin-bottom: 6px; font-size: 1.0625rem; }
.spine-node p { font-size: .875rem; color: #93aac6; margin: 0; }

@media (max-width: 780px) {
  .spine-track { grid-template-columns: minmax(0, 1fr); }
  .spine-node { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .spine-node:last-child { border-bottom: 0; }
}

/* interior page hero */
.hero-page .breadcrumb { margin-bottom: 22px; }
.breadcrumb { font-size: .8125rem; color: #8fa6c2; }
.breadcrumb a { color: #a9c2e4; }
.breadcrumb span { opacity: .5; margin: 0 7px; }

/* --------------------------------------------------------------- cards  */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: .9375rem; color: var(--slate); margin-bottom: 0; }
.card .textlink { margin-top: 16px; align-self: flex-start; }
a.card { color: inherit; transition: border-color var(--t-fast), background var(--t-fast); }
a.card:hover { border-color: var(--brand); text-decoration: none; }
a.card:hover h3 { color: var(--brand); }

.card-ink {
  background: rgba(255,255,255,.045);
  border-color: var(--line-dark);
}
.card-ink p { color: #a9bdd6; }
a.card-ink:hover { border-color: var(--brand-lift); background: rgba(255,255,255,.08); }
a.card-ink:hover h3 { color: #9dbcff; }

.card-index {
  font-family: var(--font-display);
  font-size: .8125rem; font-weight: 700; color: var(--amber);
  margin-bottom: 12px; display: block;
}

/* capability list — hairline rows, not a card kit */
.rows { border-top: 1px solid var(--line); }
.row-item {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(14px, 3vw, 44px);
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.row-item h3 { margin-bottom: 0; }
.row-item p { color: var(--slate); font-size: .9688rem; margin-bottom: 0; }
@media (max-width: 780px) { .row-item { grid-template-columns: minmax(0, 1fr); gap: 8px; } }

/* use-case blocks */
.usecase {
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px 26px;
  background: #fff;
}
.usecase-sector {
  font-family: var(--font-display);
  font-size: .75rem; font-weight: 700;
  color: var(--brand);
  display: block; margin-bottom: 9px;
}
.usecase h4 { font-size: 1.0625rem; margin-bottom: 8px; }
.usecase p { font-size: .9375rem; color: var(--slate); margin-bottom: 12px; }
.usecase-outcome {
  font-size: .875rem; color: var(--ink);
  border-top: 1px dashed var(--line); padding-top: 11px; margin: 0;
}
.usecase-outcome b { font-family: var(--font-display); color: var(--teal); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: #fff; padding: 26px 22px; }
.stat b {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 1.9vw, 2.75rem);
  font-weight: 700; letter-spacing: -.03em;
  color: var(--ink);
  display: block; line-height: 1;
}
.stat span { font-size: .875rem; color: var(--slate); display: block; margin-top: 9px; }
.section-ink .stats { background: var(--line-dark); border-color: var(--line-dark); }
.section-ink .stat { background: var(--ink); }
.section-ink .stat b { color: #fff; }
.section-ink .stat span { color: #a9bdd6; }
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* checklist */
.ticks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: .9688rem;
  color: var(--slate);
}
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: .48em;
  width: 15px; height: 8px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.section-ink .ticks li { color: #b6c8de; }

/* numbered process — genuine sequence */
.steps { counter-reset: step; border-top: 1px solid var(--line); }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: .9375rem; font-weight: 700;
  color: var(--brand);
  padding-top: 3px;
}
.step h4 { margin-bottom: 5px; }
.step p { font-size: .9375rem; color: var(--slate); margin: 0; }
.section-ink .steps, .section-ink .step { border-color: var(--line-dark); }
.section-ink .step::before { color: var(--amber); }
.section-ink .step p { color: #a9bdd6; }

/* quote */
.quote {
  border-left: 3px solid var(--amber);
  padding: 4px 0 4px 26px;
}
.quote blockquote {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1rem + .7vw, 1.4375rem);
  line-height: 1.4; font-weight: 500; letter-spacing: -.015em;
}
.quote cite { font-style: normal; font-size: .875rem; color: var(--slate); display: block; }
.quote cite b { display: block; color: var(--ink); font-weight: 600; font-family: var(--font-display); }
.section-ink .quote cite { color: #a9bdd6; }
.section-ink .quote cite b { color: #fff; }

/* logo wall */
.logos { display: flex; flex-wrap: wrap; gap: 10px; }
.logo-chip {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 17px;
  font-size: .875rem;
  color: var(--slate);
  background: #fff;
}
.section-ink .logo-chip { border-color: var(--line-dark); background: transparent; color: #b6c8de; }

/* pill tags */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: .8125rem;
  border: 1px solid var(--line);
  background: var(--mist);
  color: var(--slate);
  padding: 5px 12px;
  border-radius: 100px;
}

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  font-family: var(--font-display);
  font-size: 1.0625rem; font-weight: 600; letter-spacing: -.012em;
  padding: 20px 44px 20px 0;
  cursor: pointer; position: relative; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 27px;
  width: 10px; height: 10px;
  border-right: 2px solid var(--slate); border-bottom: 2px solid var(--slate);
  transform: rotate(45deg);
  transition: transform var(--t-fast);
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 32px; }
.faq .faq-body { padding: 0 0 22px; }
.faq .faq-body p { font-size: .9688rem; color: var(--slate); }

/* CTA band */
.cta-band { background: var(--ink); color: #fff; padding-block: clamp(48px, 6vw, 80px); }
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { color: #a9bdd6; max-width: 56ch; }
.cta-band .inner { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: center; }
@media (max-width: 880px) { .cta-band .inner { grid-template-columns: minmax(0,1fr); } }

/* prose (insights / legal) */
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul { margin: 0 0 1.2em; }
.prose ul li { position: relative; padding-left: 20px; margin-bottom: 9px; color: var(--slate); }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 5px; height: 5px; background: var(--amber); border-radius: 50%; }

/* forms */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
@media (max-width: 680px) { .form-grid { grid-template-columns: minmax(0,1fr); } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-size: .875rem; font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff; color: var(--ink);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); outline-offset: 1px; }
.field textarea { min-height: 132px; resize: vertical; }
.field-hint { font-size: .8125rem; color: var(--slate-2); }
.form-note { font-size: .8125rem; color: var(--slate); margin-top: 14px; }
.form-status {
  margin-top: 16px; padding: 13px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--teal);
  background: #eefaf6;
  font-size: .9375rem;
  display: none;
}
.form-status[data-shown="true"] { display: block; }

/* office cards */
.office { border-top: 2px solid var(--ink); padding-top: 16px; }
.office h4 { margin-bottom: 6px; }
.office p { font-size: .9375rem; color: var(--slate); margin-bottom: 6px; }
.office a { font-size: .9375rem; }
.section-ink .office { border-top-color: var(--amber); }

/* --------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: #93aac6; padding-block: clamp(48px, 6vw, 76px) 0; }
.footer-top { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); gap: clamp(28px, 4vw, 60px); }
.footer-cols { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 26px; }
.footer-col h5 {
  font-family: var(--font-display); font-size: .875rem; font-weight: 700;
  color: #fff; margin-bottom: 14px; letter-spacing: -.01em;
}
.footer-col a { display: block; font-size: .875rem; color: #93aac6; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-brand .brand-word { color: #fff; }
.footer-blurb { font-size: .875rem; color: #93aac6; margin-top: 16px; max-width: 40ch; }
.footer-offices {
  margin-top: clamp(36px, 4vw, 56px);
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
  display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 24px;
}
.footer-office h6 { font-family: var(--font-display); font-size: .8125rem; font-weight: 700; color: #fff; margin: 0 0 7px; }
.footer-office p { font-size: .8125rem; line-height: 1.55; margin: 0; color: #93aac6; }
.footer-bar {
  margin-top: 34px; padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; justify-content: space-between;
  font-size: .8125rem;
}
.footer-bar a { color: #93aac6; }
.footer-bar a:hover { color: #fff; }
.social { display: flex; gap: 8px; }
.social a {
  width: 34px; height: 34px; border: 1px solid var(--line-dark); border-radius: var(--radius);
  display: grid; place-items: center;
}
.social a:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.social svg { width: 15px; height: 15px; fill: currentColor; }

@media (max-width: 980px) {
  .footer-top { grid-template-columns: minmax(0,1fr); }
  .footer-cols { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-offices { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .footer-cols { grid-template-columns: minmax(0,1fr); }
  .footer-offices { grid-template-columns: minmax(0,1fr); }
}

/* --------------------------------------------------------------- misc   */
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
