/* United DataWyse Ltd — site stylesheet
   Palette drawn from the logo navy. No frameworks, no build step.

   Layout model
   ------------
   Spacing is a 4px-base scale (--s-1 … --s-10). Author against it; do not
   invent one-off values. Rhythm comes from contrast: tight inside a group,
   generous between groups, and always more space above a heading than below.

   Widths: --w-page for structure, --w-text for anything read as prose.
   Breakpoints: 560 (stack), 900 (two-up), 1040 (full three-up + split). */

:root {
  --navy: #1b3a6b;
  --navy-dark: #12294e;
  --navy-light: #2c518f;
  --steel: #5b7db1;
  --paper: #ffffff;
  --mist: #f2f5f9;
  --ink: #22293a;
  --ink-soft: #4a5468;
  --line: #d7dfe9;
  --line-strong: #c2cede;
  --accent: #c9a227;

  /* Spacing scale — 4px base */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 2.5rem;
  --s-8: 3rem;
  --s-9: 4rem;
  --s-10: 6rem;

  /* Widths and gutters */
  --w-page: 1140px;
  --w-text: 68ch;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Section rhythm */
  --section-y: clamp(3rem, 6vw, 5rem);
  --section-y-tight: clamp(2.25rem, 4vw, 3.25rem);
  --section-y-loose: clamp(3.75rem, 8vw, 6.5rem);

  --radius: 6px;
  --radius-lg: 10px;
  --sans: "IBM Plex Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: "IBM Plex Serif", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Cross-document view transitions. The six pages share one topbar, one header
   and one footer, so a plain navigation repaints chrome that did not change.
   Naming those three holds them still while only <main> crossfades.

   A view-transition-name must be unique in a document. These three are, and
   the names match across pages, which is what makes the browser pair them.

   No JS and no fallback needed: a browser without support ignores the at-rule
   and navigates as before. */
@view-transition { navigation: auto; }

::view-transition-group(root) {
  animation-duration: 0.25s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar { view-transition-name: topbar; }
.site-header { view-transition-name: siteheader; }
.site-footer { view-transition-name: sitefooter; }

/* The transition is motion, so it answers to the same switch every other
   animation here does. */
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation: none !important;
  }
}

/* Plex Serif reads the prose; Plex Sans carries headings and every piece of
   chrome. One superfamily, so the two share skeleton, weight and rhythm.
   Plex Serif runs a smaller x-height than Georgia did, so the body size goes
   up a step and the leading with it. */
body {
  margin: 0;
  font-family: var(--serif);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.66;
  font-size: 1.125rem;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, .brand, nav, .btn, .topbar, .site-footer {
  font-family: var(--sans);
}

strong { font-weight: 600; }

/* Type scale — deliberate steps, fluid at the top end.
   Plex Sans is set tighter than the body: at display sizes its default
   sidebearings read loose against a serif paragraph. */
h1 {
  font-size: clamp(2rem, 1.35rem + 2.7vw, 3.1rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 var(--s-4);
}

h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.012em;
  text-wrap: balance;
  color: var(--navy);
  margin: 0 0 var(--s-3);
}

h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.006em;
  color: var(--navy);
  margin: 0 0 var(--s-2);
}

p { margin: 0 0 var(--s-4); }

a { color: var(--navy-light); }
a:hover { color: var(--navy-dark); }

img { max-width: 100%; height: auto; }

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

.container {
  max-width: var(--w-page);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* Flow utility: consistent vertical rhythm without per-element margins.
   Headings claim more space above than below. */
.flow > * + * { margin-top: var(--s-4); }
.flow > * + :is(h2, h3) { margin-top: var(--s-7); }
.flow > :last-child { margin-bottom: 0; }

.skip-link {
  position: absolute;
  left: var(--s-2);
  top: var(--s-2);
  z-index: 100;
  transform: translateY(-200%);
  background: var(--accent);
  color: var(--navy-dark);
  font-family: var(--sans);
  font-weight: 700;
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus-visible {
  transform: translateY(0);
  color: var(--navy-dark);
}

/* ---------- Top contact strip ---------- */

.topbar {
  background: var(--navy-dark);
  color: #fff;
  font-size: 0.875rem;
  font-family: var(--sans);
}

.topbar .container {
  display: flex;
  justify-content: flex-end;
  gap: var(--s-5);
  padding-block: var(--s-2);
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  padding-block: var(--s-1);
}

.topbar a:hover { text-decoration: underline; color: #fff; }

/* Mobile: the two contact routes anchor to opposite gutters. Flush-right on a
   narrow screen reads as one run-on string; edge-to-edge reads as a strip with
   a term at each margin, and puts the phone number under the thumb. */
@media (max-width: 820px) {
  .topbar .container {
    justify-content: space-between;
    gap: var(--s-3);
  }
}

/* Below ~400px the two strings together exceed the measure at 0.875rem and the
   strip breaks to two lines. The label size holds them on one. */
@media (max-width: 420px) {
  .topbar { font-size: 0.8125rem; }
}

/* ---------- Header / nav ---------- */

.site-header {
  background: var(--paper);
  /* A hairline, not a rule. The header is sticky, so it needs enough of an
     edge to stop content sliding under it unannounced — a 1px line plus a
     short shadow does that without reading as a second navy band under the
     topbar. */
  border-bottom: 1px solid var(--line-strong);
  box-shadow: 0 6px 16px -14px rgba(18, 41, 78, 0.5);
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: var(--s-3);
}

.brand { display: block; line-height: 0; }
.brand img { width: 190px; display: block; }

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.6vw, 1.5rem);
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9375rem;
  display: block;
  padding-block: var(--s-2);
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--navy); }

.site-nav a[aria-current="page"] { border-bottom-color: var(--accent); }

/* The login CTA is a destination, not a section of this site — separate it. */
.site-nav .nav-login {
  margin-left: var(--s-2);
  padding-left: clamp(0.9rem, 1.6vw, 1.5rem);
  border-left: 1px solid var(--line);
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: var(--s-2) var(--s-4);
  border-radius: var(--radius);
  border-bottom-color: transparent !important;
}

.nav-cta:hover { background: var(--navy-light); }

/* CSS-only mobile nav. The checkbox stays focusable (clipped, not removed)
   so the menu is reachable by keyboard; it is fully removed above 820px so
   it never becomes a phantom tab stop on desktop. */
.nav-toggle { display: none; }

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: var(--s-3);
  margin-right: calc(var(--s-3) * -1);
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  position: relative;
  content: "";
}

.nav-toggle-label span::before { position: absolute; top: -8px; }
.nav-toggle-label span::after { position: absolute; top: 8px; }

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
  }

  .nav-toggle:focus-visible + .nav-toggle-label {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: var(--radius);
  }

  .nav-toggle-label { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 3px solid var(--navy);
    z-index: 20;
    box-shadow: 0 12px 24px rgba(18, 41, 78, 0.18);
  }

  .nav-toggle:checked ~ .site-nav { display: block; }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--s-2) 0;
  }

  .site-nav li { border-top: 1px solid var(--line); }
  .site-nav li:first-child { border-top: none; }

  .site-nav a {
    padding: var(--s-3) var(--gutter);
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .site-nav a[aria-current="page"] { border-left-color: var(--accent); }

  .site-nav .nav-login {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }

  .nav-cta { border-radius: 0; text-align: center; }
}

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(120% 140% at 88% 0%, rgba(91, 125, 177, 0.5) 0%, rgba(91, 125, 177, 0) 62%),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: #fff;
  padding-block: clamp(3.25rem, 8vw, 6rem);
  overflow: hidden;
}

.hero h1 {
  color: #fff;
  max-width: 20ch;
  margin-bottom: var(--s-5);
}

.hero .lede {
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  max-width: 58ch;
  color: #e4eaf4;
  margin-bottom: var(--s-7);
}

/* One authored entrance, not an effect on every section. */
@media (prefers-reduced-motion: no-preference) {
  .hero > .container > * {
    animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }
  .hero > .container > :nth-child(2) { animation-delay: 0.06s; }
  .hero > .container > :nth-child(3) { animation-delay: 0.12s; }
  .hero > .container > :nth-child(4) { animation-delay: 0.18s; }

  @keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
  }
}

/* Facts sit under the ask, as a hairline-separated row — not a badge
   above the heading. */
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  margin: var(--s-7) 0 0;
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  list-style: none;
  font-family: var(--sans);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: #c3d0e6;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  white-space: nowrap; /* a fact never breaks away from its own mark */
}

/* The dot marks every fact rather than the space between two of them. A
   sibling separator has nothing to separate at the start of a wrapped line, so
   at narrow widths it orphaned itself in the gutter and the same dot read as a
   bullet on one line and a divider on the next. A leading mark stays correct
   however the row breaks. */
.hero-facts li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

/* Wide viewports: the facts become a rail beside the ask so the composition
   fills its measure instead of trailing off into empty gradient. */
@media (min-width: 1040px) {
  .hero > .container {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    column-gap: clamp(3rem, 6vw, 5.5rem);
    align-items: start;
  }

  .hero h1,
  .hero .lede,
  .hero .actions { grid-column: 1; }

  .hero-facts {
    grid-column: 2;
    grid-row: 1 / span 3; /* -1 would resolve against the explicit grid, i.e. row 1 only */
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0 0 0 clamp(1.75rem, 3vw, 2.75rem);
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.9375rem;
  }

  .hero-facts li {
    padding-block: var(--s-4);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-facts li:first-child { border-top: none; padding-top: 0; }
  .hero-facts li:last-child { padding-bottom: 0; }
  .hero-facts li::before { display: none; }
}

/* ---------- Buttons ---------- */

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.875rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  padding: var(--s-3) var(--s-5);
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy-dark);
  box-shadow: 0 2px 10px rgba(201, 162, 39, 0.28);
}

.btn-primary:hover {
  background: #dab53a;
  color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.34);
}

.btn-outline { border-color: rgba(255, 255, 255, 0.75); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-light); color: #fff; }

/* ---------- Sections ---------- */

.section { padding-block: var(--section-y); }
.section-tight { padding-block: var(--section-y-tight); }
.section-loose { padding-block: var(--section-y-loose); }

.section-alt {
  background: var(--mist);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: var(--w-text);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.section-head > :last-child { margin-bottom: 0; }
.section-head p { color: var(--ink-soft); }

/* ---------- Service index ----------
   Rule-separated entries, not boxes. Proximity does the grouping. */

.index {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6) clamp(2rem, 4vw, 3.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.index-item {
  border-top: 2px solid var(--navy);
  padding-top: var(--s-4);
}

.index-item p {
  color: var(--ink-soft);
  margin-bottom: var(--s-4);
}

.index-item > :last-child { margin-bottom: 0; }

/* Numbered process — the sequence is the information */
ol.index { counter-reset: step; }

ol.index .index-item::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--steel);
  margin-bottom: var(--s-1);
}

.more {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  min-height: 2.25rem;
}

/* Drawn chevron, not a text arrow */
.more::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.18s ease;
}

.more:hover::after { transform: rotate(-45deg) translate(2px, 2px); }

@media (min-width: 560px) {
  .index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .index-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .index { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .index-item:last-child:nth-child(odd) { grid-column: auto; }
}

/* ---------- Content pages ---------- */

.page-head {
  background: var(--navy);
  color: #fff;
  padding-block: clamp(2rem, 5vw, 3.25rem);
}

.page-head h1 { color: #fff; margin-bottom: var(--s-3); }
.page-head > .container > :last-child { margin-bottom: 0; }

.page-head .tagline {
  color: #cfd9ea;
  font-size: 1.125rem;
  max-width: 52ch;
}

.breadcrumb {
  font-family: var(--sans);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  margin: 0 0 var(--s-4);
  color: #b9c8e0;
}

.breadcrumb a { color: #fff; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { padding-inline: var(--s-2); color: rgba(255, 255, 255, 0.45); }

.prose { max-width: var(--w-text); }

/* ---------- Split: a lead column and its support ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  align-items: start;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
  /* Two peers, not a lead and a support */
  .split-even { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Support column reads as support */
.panel {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.section-alt .panel { background: var(--paper); }
.panel > :last-child { margin-bottom: 0; }
.panel h2 { font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem); }

/* ---------- Checklists ---------- */

ul.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-4);
}

ul.checklist li {
  padding: var(--s-2) 0 var(--s-2) var(--s-6);
  position: relative;
  border-top: 1px solid var(--line);
}

ul.checklist li:first-child { border-top: none; padding-top: 0; }
ul.checklist li:first-child::before { top: 0.42rem; }

.panel ul.checklist li { border-top-color: var(--line-strong); }

/* Drawn check, one consistent stroke — not a glyph */
ul.checklist li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.92rem;
  width: 0.45rem;
  height: 0.8rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
}

/* ---------- Callout / CTA band ---------- */

.cta-band {
  background: var(--navy);
  color: #fff;
  padding-block: clamp(2.75rem, 6vw, 4rem);
}

.cta-band .container {
  display: grid;
  gap: var(--s-6);
  align-items: center;
}

@media (min-width: 900px) {
  .cta-band .container {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

.cta-copy > :last-child { margin-bottom: 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #dce4f0; max-width: 56ch; margin-bottom: 0; }

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
}

@media (min-width: 900px) {
  .cta-actions { align-items: flex-end; text-align: right; }
}

.phone-big {
  font-family: var(--sans);
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
}

.phone-big:hover { color: var(--accent); }

.cta-actions .phone-note {
  font-family: var(--sans);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: #b9c8e0;
  margin: 0 0 calc(var(--s-3) * -1);
}

/* ---------- Forms ---------- */

.form-grid {
  display: grid;
  gap: var(--s-5);
  max-width: 34rem;
}

.form-grid label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9375rem;
  display: block;
  margin-bottom: var(--s-2);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: var(--s-3);
  font: inherit;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  min-height: 2.875rem;
}

.form-grid textarea { min-height: 8rem; resize: vertical; }

.form-grid input:focus-visible,
.form-grid select:focus-visible,
.form-grid textarea:focus-visible {
  outline: 3px solid var(--navy-light);
  outline-offset: 1px;
  border-color: var(--navy-light);
}

.form-note {
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0;
}

.form-note + form { margin-top: var(--s-6); }

/* ---------- Definition rows ---------- */

.fact-table {
  border-collapse: collapse;
  width: 100%;
  font-family: var(--sans);
  font-size: 0.9375rem;
}

.fact-table th,
.fact-table td {
  text-align: left;
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line-strong);
  vertical-align: top;
}

.panel .fact-table tr:last-child :is(th, td) { border-bottom: none; }

.fact-table th {
  color: var(--navy);
  white-space: nowrap;
  padding-right: var(--s-4);
  width: 1%;
}

@media (max-width: 400px) {
  .fact-table th, .fact-table td { display: block; width: auto; }
  .fact-table th { border-bottom: none; padding-bottom: 0; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-dark);
  color: #c7d2e4;
  padding-block: clamp(2.5rem, 5vw, 3.5rem) var(--s-5);
  font-size: 0.9375rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-7);
}

@media (min-width: 560px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
  }
  .footer-brand { grid-column: auto; }
}

.site-footer h4 {
  color: #fff;
  margin: 0 0 var(--s-3);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9db0cd;
}

.site-footer a { color: #dbe4f2; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li + li { margin-top: var(--s-2); }
.site-footer li a { display: inline-block; padding-block: var(--s-1); }

.footer-brand .footer-name {
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 var(--s-3);
  letter-spacing: 0;
  text-transform: none;
}

.footer-brand address { line-height: 1.9; }

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--s-5);
  margin: 0;
  font-size: 0.8125rem;
  color: #93a3bd;
}

address { font-style: normal; }
