:root {
  --ink: #0b0b0d;
  --charcoal: #202124;
  --muted: #6e706f;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #e7e1d9;
  --charcoal-deep: #191a1c;
  --blue: #5a86ad;
  --blue-soft: #dce8ef;
  --blush: #eadcdb;
  --clay: #c99b78;
  --sage: #d9dfd2;
  --stone: #efebe5;
  --radius: 8px;
  --max: 1350px;
  --page-width: 95%;
}

* {
  box-sizing: border-box;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  color: var(--charcoal);
  line-height: 1.45;
}

.site-header {
  position: relative;
  z-index: 30;
  grid-column: 1 / -1;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% + (var(--shell-pad) * 2));
  height: var(--header-height);
  min-height: 0;
  margin: 0 calc(var(--shell-pad) * -1) 33px;
  padding: 0 56px;
  background: transparent;
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.brand {
  position: absolute;
  top: var(--brand-top);
  left: var(--brand-left);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--brand-box);
  height: var(--brand-box);
  flex: 0 0 var(--brand-box);
  background: transparent;
  border: 0;
  text-decoration: none;
  z-index: 2;
  isolation: isolate;
}

.brand::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 0;
  width: calc(var(--brand-size) * 0.89);
  height: calc(var(--brand-size) * 0.89);
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.brand img {
  position: relative;
  z-index: 1;
  width: var(--brand-size);
  height: var(--brand-size);
  max-width: none;
  object-fit: contain;
  filter: saturate(0.72) brightness(1.12);
  transform: translateY(1px);
}

.header-meta {
  position: absolute;
  top: -34px;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(25, 26, 28, 0.8);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.header-meta span,
.header-meta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-decoration: none;
}

.header-meta a:link,
.header-meta a:visited,
.header-meta a:hover,
.header-meta a:active {
  color: inherit;
  text-decoration: none;
}

.header-meta svg {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  transform: translateY(1px);
}

.site-nav {
  display: block;
  min-height: 56px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.site-nav .primary-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 56px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  margin: 0;
  padding: 0;
}

.site-nav .primary-menu > li {
  position: relative;
}

.site-nav a {
  display: block;
  padding: 13px 6px;
  border-radius: 999px;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
}

.site-nav .primary-menu > li:last-child > a {
  min-width: 122px;
  margin-left: 30px;
  padding-right: 22px;
  padding-left: 22px;
  background: var(--sage);
  color: var(--ink);
  border-radius: var(--radius);
  text-align: center;
}

.site-nav .menu-item-has-children > a::after {
  content: "↓";
  display: inline-block;
  margin-left: 7px;
  font-size: 12px;
  line-height: 1;
  transform: translateY(-1px);
}

.site-nav .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: -18px;
  z-index: 50;
  display: grid;
  gap: 2px;
  min-width: 290px;
  margin: 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(11, 11, 13, 0.16);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    visibility 160ms ease,
    transform 160ms ease;
}

.site-nav .sub-menu a {
  padding: 10px 12px;
  border-radius: 5px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 680;
  white-space: nowrap;
}

.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus-visible {
  background: var(--blue-soft);
  outline: none;
}

.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.nav-toggle {
  display: none;
}

.section-pad {
  width: min(var(--page-width), var(--max));
  margin: 0 auto;
  padding: 44px 0;
}

.hero {
  padding: 59px 0 0;
}

.hero-shell {
  --shell-pad: 34px;
  --header-height: 89px;
  --header-corner: var(--radius);
  --notch-radius: 80px;
  --notch-left-top: 109px;
  --notch-right-top: 245px;
  --notch-left-bottom: 109px;
  --notch-right-bottom: 245px;
  --brand-left: 120px;
  --brand-top: -13px;
  --brand-box: 112px;
  --brand-size: 194px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 22px;
  width: min(var(--page-width), var(--max));
  min-height: auto;
  margin: 0 auto;
  padding: 0 var(--shell-pad) var(--shell-pad);
  background: var(--white);
  border: 1px solid #d8d1c7;
  border-top-color: transparent;
  border-radius: var(--radius);
  overflow: visible;
}

/*
 * Keep the first piece of page content exactly 20px below the visible logo.
 * The logo PNG includes transparent space around the circle, so the measured
 * shell separation is 59px from the bottom of the header row.
 */
body :is(
  .hero-shell,
  .service-hero-shell,
  .services-index-hero-shell,
  .what-we-do-hero-shell,
  .contact-hero-shell,
	.about-story-hero-shell,
  .kelly-story-hero-shell,
  .blog-post-hero-shell
) {
  align-content: start;
  row-gap: 0;
}

body :is(
  .hero-shell,
  .service-hero-shell,
  .services-index-hero-shell,
  .what-we-do-hero-shell,
  .contact-hero-shell,
	.about-story-hero-shell,
  .kelly-story-hero-shell,
  .blog-post-hero-shell
) > .site-header {
  margin-bottom: 59px;
}

.header-outline {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 170px;
  overflow: visible;
  pointer-events: none;
}

.header-outline path {
  fill: none;
  stroke: var(--charcoal-deep);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.header-outline .header-outline-fill {
  fill: url("#header-gradient");
  stroke: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: clamp(32px, 3vw, 42px);
  background: var(--blue-soft);
  border-radius: var(--radius);
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: #626766;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  margin-bottom: 14px;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(48px, 4.2vw, 70px);
  font-weight: 520;
  line-height: 0.95;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.hero-visual {
  position: relative;
  align-self: center;
  aspect-ratio: 300 / 283;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--stone);
  border-radius: var(--radius);
}

.hero-visual img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 105%;
  height: 105%;
  max-width: none;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  transform: translateX(-50%);
}

.hero-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 10px;
  width: min(310px, calc(100% - 44px));
  padding: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.hero-visual span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-visual strong {
  font-size: 23px;
  font-weight: 560;
  line-height: 1.05;
}

.statement {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
  align-items: start;
  padding-top: 88px;
}

.statement h2,
.section-heading h2,
.system h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 4.2vw, 70px);
  font-weight: 510;
  line-height: 0.96;
}

.statement p {
  align-self: center;
  max-width: 620px;
  margin: 0;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.28;
}

.clients {
  padding-top: 36px;
  padding-bottom: 8px;
}

.clients-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.clients-heading h2 {
  margin: 0;
  font-size: clamp(42px, 3.8vw, 56px);
  font-weight: 510;
  line-height: 0.98;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.clients-grid li {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 138px;
  overflow: hidden;
}

.client-logo-art {
  position: relative;
  display: block;
  width: 200px;
  height: 82px;
  overflow: hidden;
  background: var(--paper);
  isolation: isolate;
}

.client-logo-art img {
  position: absolute;
  height: auto;
  max-width: none;
  filter: grayscale(1) contrast(1.08);
  mix-blend-mode: multiply;
}

.client-logo-tui img {
  top: -13px;
  left: 17px;
  width: 604px;
}

.client-logo-edf img {
  top: -28px;
  left: -262px;
  width: 728px;
}

.client-logo-lidl img {
  top: -20px;
  left: -362px;
  width: 569px;
}

.client-logo-outlook img {
  top: -135px;
  left: -1px;
  width: 655px;
}

.client-logo-bbc img {
  top: -144px;
  left: -245px;
  width: 693px;
}

.client-logo-thomas-cook img {
  top: -123px;
  left: -407px;
  width: 629px;
}

.client-logo-deafblind img {
  top: -204px;
  left: -6px;
  width: 588px;
}

.client-logo-haven img {
  top: -278px;
  left: -270px;
  width: 764px;
}

.client-logo-zurich img {
  top: -174px;
  left: -352px;
  width: 555px;
}

.client-logo-baked-bean img {
  top: 50%;
  left: 50%;
  width: 190px;
  transform: translate(-50%, -50%);
}

.focus {
  padding-top: 44px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.focus-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
}

.focus-card:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

.focus-card-media {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 10 / 9;
  padding: 26px;
  background-image: var(--focus-card-image);
  background-position: center top;
  background-size: cover;
}

.focus-card-media span {
  display: block;
  width: fit-content;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.focus-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.focus-card h3 {
  max-width: 310px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 540;
  line-height: 0.98;
}

.focus-card p {
  margin-bottom: 0;
  color: rgba(11, 11, 13, 0.72);
  font-size: 17px;
}

.focus-card.blue {
  background: var(--blue-soft);
}

.focus-card.sage {
  background: var(--sage);
}

.focus-card.clay {
  background: var(--blush);
}

.system-panel {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  padding: clamp(28px, 5vw, 64px);
  background: var(--stone);
  border-radius: var(--radius);
}

.system-list {
  display: grid;
  gap: 0;
  align-self: end;
  border-top: 1px solid rgba(11, 11, 13, 0.18);
}

.system-list div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(11, 11, 13, 0.18);
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 560;
  line-height: 1.15;
}

.system-list span {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  background: var(--ink);
  border-radius: 999px;
}

.standards {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 16px;
  align-items: stretch;
}

.standards > .section-heading {
  display: flex;
  flex-direction: column;
  max-width: none;
  min-height: 100%;
  margin-bottom: 0;
  padding: clamp(26px, 3vw, 36px);
  background: var(--stone);
  border-radius: var(--radius);
}

.standards-intro {
  max-width: 420px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.28;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.standards-grid article {
  min-height: 252px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.standards-grid article:nth-child(1) {
  background: var(--charcoal-deep);
  color: var(--white);
}

.standards-grid article:nth-child(2) {
  background: var(--sage);
  border-color: transparent;
}

.standards-grid article:nth-child(3) {
  background: var(--blue-soft);
  border-color: transparent;
}

.standards-grid article:nth-child(4) {
  background: var(--blush);
  border-color: transparent;
}

.standards-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.standards-grid h3 {
  margin-bottom: 14px;
  font-size: 30px;
  font-weight: 560;
  line-height: 1;
}

.standards-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.standards-grid article:nth-child(1) p {
  color: rgba(255, 255, 255, 0.7);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 44px;
  align-items: end;
  padding-top: 46px;
}

.contact-card {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-style: normal;
}

.contact-card a {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 560;
  line-height: 1.05;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--page-width), var(--max));
  margin: 0 auto 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 72px;
  height: 72px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--charcoal-deep);
  border: 1px solid var(--charcoal-deep);
  border-radius: 50%;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.site-footer-social a:hover,
.site-footer-social a:focus-visible {
  color: var(--white);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.site-footer-social svg {
  width: 18px;
  height: 18px;
}

.site-footer-social svg path {
  fill: currentColor;
}

.inner-header-shell {
  --shell-pad: 34px;
  position: relative;
  width: min(var(--page-width), var(--max));
  height: 96px;
  margin: 58px auto 0;
  padding: 0 var(--shell-pad);
  background: var(--charcoal-deep);
  border-radius: var(--radius);
}

.inner-header-shell .site-header {
  width: 100%;
  height: 96px;
  margin: 0;
  padding: 0 22px 0 0;
}

.inner-header-shell .brand {
  position: relative;
  top: auto;
  left: auto;
  width: 88px;
  height: 88px;
  margin-right: auto;
  flex: 0 0 88px;
}

.inner-header-shell .brand::before {
  width: 78px;
  height: 78px;
}

.inner-header-shell .brand img {
  width: 116px;
  height: 116px;
}

.inner-header-shell .header-meta {
  display: none;
}

.legacy-content {
  min-height: 55vh;
  padding-top: 24px;
}

.legacy-content article {
  max-width: 960px;
}

.legacy-content h1 {
  max-width: 960px;
}

.legacy-content .entry-content {
  font-size: 18px;
}

.legacy-content .entry-content img {
  height: auto;
}

@media (max-width: 980px) {
  .header-meta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 30;
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: var(--ink);
    border: 0;
    border-radius: 999px;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--white);
  }

  .nav-toggle span + span {
    margin-top: -14px;
  }

  .site-nav {
    position: fixed;
    inset: 12px;
    z-index: 25;
    display: none;
    place-content: center;
    gap: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow-y: auto;
  }

  .site-nav .primary-menu {
    display: grid;
    place-content: center;
    gap: 7px;
    min-height: 100%;
    padding: 24px 0;
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    color: var(--ink);
    font-size: 25px;
    text-align: center;
  }

  .site-nav .primary-menu > li:last-child > a {
    margin-left: 0;
  }

  .site-nav .menu-item-has-children > a::after {
    content: "↓";
  }

  .site-nav .sub-menu {
    position: static;
    display: grid;
    gap: 1px;
    min-width: 0;
    padding: 3px 0 7px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav .sub-menu a {
    padding: 5px 12px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 720;
    white-space: normal;
  }

  .hero-shell,
  .statement,
  .system-panel,
  .standards,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    --shell-pad: 16px;
    min-height: auto;
    padding: 0 var(--shell-pad) var(--shell-pad);
  }

  .hero-copy {
    min-height: 0;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 0;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-card {
    min-height: 0;
  }

  .standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inner-header-shell {
    --shell-pad: 16px;
  }

  .inner-header-shell .site-header {
    padding-right: 4px;
  }
}

@media (max-width: 680px) {
  .section-pad {
    padding: 32px 0;
  }

  .hero {
    padding-top: 59px;
  }

  .hero-shell {
    gap: 14px;
  }

  .legacy-content {
    padding-top: 24px;
  }

  .hero-copy {
    min-height: 0;
    padding: 26px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 0;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 13vw, 60px);
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 20px;
  }

  .hero-visual figcaption {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .hero-visual strong {
    font-size: 21px;
  }

  .statement h2,
  .section-heading h2,
  .system h2,
  .contact h2 {
    font-size: clamp(46px, 13vw, 60px);
  }

  .statement p {
    font-size: 20px;
  }

  .clients-heading h2 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .clients {
    padding-top: 48px;
    padding-bottom: 24px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clients-grid li {
    min-height: 112px;
  }

  .clients-grid li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .client-logo-art {
    transform: scale(0.78);
  }

  .standards-intro {
    font-size: 20px;
  }

  .system-panel {
    padding: 28px;
  }

  .standards-grid {
    grid-template-columns: 1fr;
  }

  .standards-grid span {
    margin-bottom: 30px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer-meta {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
}
