/* ==========================================================================
   Ecce Insights — stylesheet
   Plain CSS, no build step. Mobile-first; breakpoints at 640 / 900 / 1100px.
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #08192e;
  --navy-800: #0b1f3a;
  --navy-700: #12395c;
  --teal-500: #2f8f9d;
  --teal-400: #48b3c4;
  --teal-300: #7fd8e6;

  /* Neutrals */
  --ink:        #12212f;
  --ink-soft:   #46586b;
  --ink-faint:  #6b7d8f;
  --line:       #e2e8ee;
  --surface:    #ffffff;
  --surface-2:  #f5f8fa;
  --surface-3:  #eef3f7;

  /* Type */
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --wrap: 1140px;
  --gutter: 20px;
  --radius: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(10, 30, 50, .06), 0 2px 8px rgba(10, 30, 50, .05);
  --shadow-md: 0 4px 12px rgba(10, 30, 50, .07), 0 12px 32px rgba(10, 30, 50, .07);

  --header-h: 66px;
}

/* --------------------------------------------------------------- Reset -- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
svg { display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.022em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

/* Large display type needs tighter tracking than small headings. */
h1 { font-weight: 800; letter-spacing: -0.035em; }
h2 { letter-spacing: -0.028em; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

ul, ol { margin: 0; padding: 0; list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ----------------------------------------------------------- Utilities -- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy-800);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--teal-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin: 0 0 .9rem;
}
.eyebrow-dark { color: var(--teal-500); }

.lede {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* Scroll-reveal.
   Opt-in via the `.js` class so no-JS users always see content, and the hidden
   state is additionally capped by an animation: if JS never adds .is-visible,
   `revealFailsafe` restores the element on its own. Content is never left
   permanently invisible by a script that failed to run. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1);
  animation: revealFailsafe 0s linear 3s forwards;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  animation: none;
}

@keyframes revealFailsafe { to { opacity: 1; transform: none; } }

/* Printing must never omit content waiting on a scroll event. */
@media print {
  .js .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; animation: none; }
}

/* -------------------------------------------------------------- Header -- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -.01em;
  color: #fff;
  transition: color .3s ease;
  flex-shrink: 0;
}
.brand-mark { width: 22px; height: 22px; fill: var(--teal-300); transition: fill .3s ease; }
.brand-accent { color: var(--teal-300); transition: color .3s ease; }

.is-stuck .brand { color: var(--navy-800); }
.is-stuck .brand-mark { fill: var(--teal-500); }
.is-stuck .brand-accent { color: var(--teal-500); }

.nav { display: none; }

.nav a {
  text-decoration: none;
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .88);
  padding: 8px 2px;
  transition: color .2s ease;
}
.nav a:hover { color: #fff; }
.is-stuck .nav a { color: var(--ink-soft); }
.is-stuck .nav a:hover { color: var(--navy-800); }

.nav .nav-cta {
  background: var(--teal-500);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: background-color .2s ease, transform .2s ease;
}
.nav .nav-cta:hover { background: var(--teal-400); color: #fff; transform: translateY(-1px); }
.is-stuck .nav .nav-cta { color: #fff; }
.is-stuck .nav .nav-cta:hover { color: #fff; }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: #fff;
  transition: transform .3s ease, opacity .2s ease, background-color .3s ease;
}
.is-stuck .nav-toggle span { background: var(--navy-800); }

/* While the drawer is open the header must read as one solid panel with it,
   rather than showing the dark hero through a transparent bar. */
.site-header.nav-open {
  background: #fff;
  border-bottom-color: transparent;
}
.site-header.nav-open .brand { color: var(--navy-800); }
.site-header.nav-open .brand-mark { fill: var(--teal-500); }
.site-header.nav-open .brand-accent { color: var(--teal-500); }

.nav-toggle[aria-expanded="true"] span { background: var(--navy-800); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav.is-open {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: #fff;
  padding: 12px var(--gutter) 26px;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  animation: drawer .24s ease;
}
@keyframes drawer {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}
.nav.is-open a {
  color: var(--ink);
  padding: 14px 4px;
  border-bottom: 1px solid var(--surface-3);
  font-size: 1.0625rem;
}
.nav.is-open a:last-child { border-bottom: 0; }
.nav.is-open .nav-cta {
  margin-top: 14px;
  text-align: center;
  color: #fff;
  border-bottom: 0;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav {
    display: flex;
    align-items: center;
    gap: 30px;
  }
}

/* ---------------------------------------------------------------- Hero -- */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: auto;
  padding: calc(var(--header-h) + 40px) 0 48px;
  background:
    radial-gradient(1100px 620px at 78% 18%, rgba(47, 143, 157, .30), transparent 62%),
    linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--navy-700) 100%);
  color: #fff;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: -1; opacity: .85; }
.hero-grid { width: 100%; height: 100%; }

.hero-bars rect {
  transform-box: fill-box;
  transform-origin: bottom;
  animation: growBar 1.1s cubic-bezier(.22,.61,.36,1) backwards;
}
.hero-bars rect:nth-child(1) { animation-delay: .15s; }
.hero-bars rect:nth-child(2) { animation-delay: .25s; }
.hero-bars rect:nth-child(3) { animation-delay: .35s; }
.hero-bars rect:nth-child(4) { animation-delay: .45s; }
.hero-bars rect:nth-child(5) { animation-delay: .55s; }
.hero-bars rect:nth-child(6) { animation-delay: .65s; }
@keyframes growBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }

.hero-line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawLine 1.6s ease .7s forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.hero-inner { position: relative; }

.hero-title {
  font-size: clamp(2.3rem, 7.6vw, 4.3rem);
  line-height: 1.06;
  margin: 0 0 1.1rem;
  max-width: 15ch;
}

.hero-sub {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  color: rgba(255, 255, 255, .8);
  max-width: 56ch;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2.4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  max-width: 760px;
}
.stat dt {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .58);
  margin-bottom: 4px;
}
.stat dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--teal-300);
}

@media (min-width: 640px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 26px; }
}

/* ------------------------------------------------------------- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
  min-height: 46px;
}
.btn-primary {
  background: var(--teal-500);
  color: #fff;
  box-shadow: 0 6px 18px rgba(47, 143, 157, .32);
}
.btn-primary:hover {
  background: var(--teal-400);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 143, 157, .38);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 34px; font-size: 1rem; min-height: 54px; }

/* ------------------------------------------------------------ Trustbar -- */
.trustbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .62);
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.trust-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.trust-label {
  font-size: .74rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, .88);
}
.trust-logos .dot { color: var(--teal-500); }

@media (min-width: 900px) {
  .trust-inner { flex-direction: row; justify-content: center; gap: 22px; }
}

/* ------------------------------------------------------------ Sections -- */
.section { padding: 56px 0; }
.sec-head { margin-bottom: 32px; max-width: 780px; }
.sec-head h2 { font-size: clamp(1.85rem, 5vw, 2.65rem); margin-bottom: .55rem; }

@media (min-width: 640px) {
  .section { padding: 72px 0; }
  .sec-head { margin-bottom: 42px; }
}

@media (min-width: 900px) {
  .hero { min-height: 100svh; padding: calc(var(--header-h) + 48px) 0 60px; }
  .section { padding: 104px 0; }
  .sec-head { margin-bottom: 56px; }
}

/* Problem */
.section-problem { background: var(--surface); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.problem-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.problem-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal-400);
  box-shadow: var(--shadow-md);
}
.problem-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--teal-500);
  opacity: .5;
  margin-bottom: 10px;
}
.problem-card h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.problem-card p { color: var(--ink-soft); font-size: .9375rem; margin: 0; }

@media (min-width: 900px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* Services */
.section-services { background: var(--surface-2); }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.svc-grid-sub { margin-top: 20px; }

.svc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal-400);
  box-shadow: var(--shadow-md);
}

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--navy-700), var(--teal-500));
  color: #fff;
  margin-bottom: 18px;
}
.svc-icon svg { width: 25px; height: 25px; }

.svc-card-lead h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.svc-blurb { color: var(--ink-soft); margin-bottom: 1.15rem; }

.svc-list { display: grid; gap: 11px; }
.svc-list li {
  position: relative;
  padding-left: 27px;
  font-size: .9375rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.svc-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: .52em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--teal-500);
  transform: rotate(45deg);
}

.svc-card-sm { padding: 24px 22px; }
.svc-card-sm h4 { font-size: 1.0625rem; margin-bottom: .35rem; }
.svc-card-sm p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

@media (min-width: 900px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .svc-grid-sub { grid-template-columns: repeat(3, 1fr); margin-top: 26px; }
  .svc-card-lead { padding: 38px 34px; }
}

/* Approach */
.section-approach {
  background:
    radial-gradient(760px 420px at 12% 8%, rgba(47, 143, 157, .22), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: #fff;
}
.section-approach .lede { color: rgba(255, 255, 255, .74); }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  counter-reset: step;
}
.step {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.step:last-child { border-bottom: 1px solid rgba(255, 255, 255, .12); }

.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--teal-500);
  color: var(--teal-300);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
}
.step-body h3 { font-size: 1.2rem; margin-bottom: .3rem; color: #fff; }
.step-body p { color: rgba(255, 255, 255, .72); font-size: .9375rem; margin: 0; }

@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 0 46px; }
}

/* Outcomes */
.section-outcomes { background: var(--surface); }

.out-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.out-card {
  padding: 26px 24px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border-left: 3px solid var(--teal-500);
  transition: transform .25s ease, box-shadow .25s ease;
}
.out-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.out-card h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.out-card p { color: var(--ink-soft); font-size: .9375rem; margin: 0; }

@media (min-width: 640px) {
  .out-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

/* About */
.section-about { background: var(--surface-3); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.avatar, .avatar-img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 22px;
}
.avatar-img { object-fit: cover; display: block; }
.avatar svg { width: 100%; height: 100%; }

.about-cred {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cred-item { display: grid; margin: 0; line-height: 1.4; }
.cred-item strong { font-size: .9375rem; color: var(--ink); }
.cred-item span { font-size: .84rem; color: var(--ink-faint); }

.about-body h2 { font-size: clamp(1.9rem, 5vw, 2.6rem); margin-bottom: .15rem; }
.about-role {
  color: var(--teal-500);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.4rem;
}
.about-body p { color: var(--ink-soft); }

/* Pull-quote: David in his own words, set apart from the running bio. */
.about-quote {
  margin: 0 0 1.5rem;
  padding: 0 0 0 20px;
  border-left: 3px solid var(--teal-500);
}
.about-quote p {
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0;
}

@media (min-width: 900px) {
  .about-quote { padding-left: 26px; }
  .about-quote p { font-size: 1.25rem; }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1.6rem 0;
}
.chips li {
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--teal-500);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: gap .2s ease, border-color .2s ease;
}
.link-arrow svg { width: 17px; height: 17px; }
.link-arrow:hover { gap: 12px; border-bottom-color: var(--teal-500); }

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 320px 1fr; gap: 60px; }
  .avatar, .avatar-img { max-width: 100%; }
}

/* Contact */
.section-contact {
  background:
    radial-gradient(820px 460px at 50% 0%, rgba(47, 143, 157, .28), transparent 62%),
    linear-gradient(175deg, var(--navy-800), var(--navy-900));
  color: #fff;
  text-align: center;
}
.contact-inner { max-width: 720px; }
.contact-inner h2 { font-size: clamp(1.95rem, 5.4vw, 2.9rem); margin-bottom: .6rem; }
.contact-inner .lede { color: rgba(255, 255, 255, .78); margin-inline: auto; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 2.2rem 0 1.9rem;
}

.contact-meta {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .9rem;
  color: rgba(255, 255, 255, .62);
}
.contact-meta a { color: var(--teal-300); text-decoration: none; font-weight: 500; }
.contact-meta a:hover { text-decoration: underline; }
.contact-meta p { margin-bottom: 4px; }

/* -------------------------------------------------------------- Footer -- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .56);
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 600;
}
.footer-brand .brand-mark { width: 19px; height: 19px; fill: var(--teal-500); }

.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 12px; }
.footer-nav a {
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s ease;
  /* Padding brings these to a comfortable touch size without changing the look. */
  padding: 11px 8px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-nav a:hover { color: var(--teal-300); }

/* Inline text links in the contact block get the same treatment. */
.contact-meta a {
  display: inline-block;
  padding: 10px 6px;
  min-height: 44px;
  line-height: 24px;
}
.link-arrow { padding: 10px 0; min-height: 44px; }

.footer-copy { font-size: .82rem; margin: 0; }

@media (min-width: 900px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* --------------------------------------------------------------- Print -- */
@media print {
  .site-header, .nav-toggle, .hero-bg, .btn { display: none !important; }
  body { color: #000; background: #fff; }
  .hero, .section-approach, .section-contact, .site-footer,
  .trustbar { background: #fff !important; color: #000 !important; }
  .hero { min-height: auto; padding: 20px 0; }
}
