@charset "UTF-8";
/* Variables
/* ---------------------------------------------------------- */
@import "bootstrap-icons/font/bootstrap-icons.css";
:root {
  /* Colours */
  --color-primary: #083D30;
  --color-base: #0C0C08;
  --color-base-light: #4d4d4d;
  --color-bg: #F8F3E7;
  --color-success: #80b912;
  --color-error: #f05230;
  --color-brand: #FFDF01;
  --color-black-green: #05241C;
  --color-washed-green: #98AA9E;
  --color-old-lace: #F8F3E7;
  --color-background: #F8F3E7;
  --color-highlight: #767150;
  --color-white-accent: #EFEADF;
  --color-border: #C1BBB2;
  --color-surface: #FFFDF8;
  /* Fonts */
  --font-sans: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --font-serif: Georgia, Times, serif;
  --font-mono: "IBM Plex Mono", Menlo, Courier, monospace;
  --font-light: 100;
  --font-normal: 400;
  --font-bold: 700;
  --font-heavy: 800;
  /* Font sizes */
  /* Body text */
  --text-xs: clamp(1.2rem, 1.1rem + 0.2vw, 1.3rem); /* 12px → 13px */
  --text-sm: clamp(1.3rem, 1.2rem + 0.2vw, 1.4rem); /* 13px → 14px */
  --text-md: clamp(1.5rem, 1.4rem + 0.3vw, 1.7rem); /* 15px → 17px */
  --text-base: clamp(1.7rem, 1.6rem + 0.3vw, 1.9rem); /* 17px → 19px */
  --text-lg: clamp(1.8rem, 1.7rem + 0.5vw, 2.2rem); /* 18px → 22px */
  --text-xl: clamp(2.2rem, 2rem + 1vw, 3rem); /* 22px → 30px */
  --text-xxl: clamp(3.4rem, 3rem + 2vw, 5.2rem); /* 34px → 52px */
  /* Headings */
  --h6: clamp(1.5rem, 1.4rem + 0.25vw, 1.7rem); /* 15px → 17px */
  --h5: clamp(1.7rem, 1.6rem + 0.25vw, 1.9rem); /* 17px → 19px */
  --h4: clamp(1.9rem, 1.8rem + 0.5vw, 2.3rem); /* 19px → 23px */
  --h3: clamp(2.1rem, 2rem + 0.75vw, 2.8rem); /* 21px → 28px */
  --h2: clamp(2.5rem, 2.3rem + 1vw, 3.4rem); /* 25px → 34px */
  --h1: clamp(3rem, 2.7rem + 1.5vw, 4.2rem); /* 30px → 42px */
  /* Breakpoints */
  --xlarge: 1680px;
  --large: 1280px;
  --medium: 980px;
  --small: 740px;
  --xsmall: 480px;
  /* Sizes */
  --height: 4rem;
  --margin: 2rem;
  --gutter-x: var(--margin);
  --radius: 0.5rem;
  --content-width: 820px;
}

.text-right {
  text-align: right;
}

.highlight {
  background: linear-gradient(to bottom, transparent 60%, var(--color-brand) 60%, var(--color-brand) 90%, transparent 90%);
  padding: 0 2px;
  transition: background 0.3s ease;
}

.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.h-100 {
  height: 100%;
}

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

/* Animations
/* ---------------------------------------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  color: var(--color-base);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6em;
  font-weight: 400;
  font-style: normal;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p,
ul,
ol,
li,
dl,
dd,
hr,
pre,
form,
table,
video,
figure,
figcaption,
blockquote {
  margin: 0;
  padding: 0;
}

ul[class],
ol[class] {
  padding: 0;
  list-style: none;
}

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

input,
button,
select,
textarea {
  font: inherit;
  -webkit-appearance: none;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

label {
  display: block;
  font-size: 0.9em;
  font-weight: 700;
}

hr {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  border: 0;
  border-top: 1px solid currentcolor;
  opacity: 0.2;
}

::selection {
  text-shadow: none;
  background: var(--color-brand);
  color: var(--color-base);
}

mark {
  background-color: #fdffb6;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul:not([class]) li + li {
  margin-top: 0.6em;
}

a:not([class]) {
  color: var(--color-primary);
  text-decoration-skip-ink: auto;
}

a:not([class]):hover {
  color: var(--color-base);
}

a[class] {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}

a[class]:hover {
  transition: color 0.2s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1em;
  font-weight: 500;
  color: var(--color-base);
}

h1 {
  font-size: var(--h1);
  letter-spacing: -0.5px;
}

h2 {
  font-size: var(--h2);
  letter-spacing: -0.3px;
}

h3 {
  font-size: var(--h3);
  letter-spacing: -0.2px;
}

h4 {
  font-size: var(--h4);
}

h5 {
  font-size: var(--h5);
}

h6 {
  font-size: var(--h6);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Content & Typography
/* ---------------------------------------------------------- */
.content > * + * {
  margin-top: min(3rem, 4vmin);
}

.content [id]:not(:first-child) {
  margin: 1.5em 0 0;
}

.content > [id] + * {
  margin-top: 1.5rem;
}

.content [id] + .kg-card,
.content blockquote + .kg-card {
  margin-top: 6vmin;
}

.canvas > blockquote,
.canvas > ol,
.canvas > ul,
.canvas > dl,
.canvas > p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.6em;
}

.content > ul,
.content > ol,
.content > dl {
  padding-left: 1.9em;
}

.content hr {
  margin-top: 6vmin;
}

.content hr + * {
  margin-top: 6vmin !important;
}

.content blockquote {
  position: relative;
  font-style: italic;
}

.content blockquote::before {
  content: "";
  position: absolute;
  left: -1.5em;
  top: 0;
  bottom: 0;
  width: 0.3rem;
  background: var(--color-primary);
}

@media (max-width: 650px) {
  .canvas blockquote,
  .canvas ol,
  .canvas ul,
  .canvas dl,
  .canvas p {
    font-size: var(--text-base);
  }
  .content blockquote::before {
    left: -4vmin;
  }
}
/* Cards
/* ---------------------------------------------------------- */
.content :not(.kg-card):not([id]) + .kg-card {
  margin-top: 6vmin;
}

.content .kg-card + :not(.kg-card) {
  margin-top: 6vmin;
}

figcaption {
  padding: 1.5rem 1.5rem 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.4em;
}

figcaption strong {
  color: rgba(0, 0, 0, 0.8);
}

.canvas :not(pre) code {
  vertical-align: middle;
  padding: 0.15em 0.4em 0.15em;
  border: #e1eaef 1px solid;
  font-weight: 400 !important;
  font-size: 0.9em;
  line-height: 1em;
  color: #dc0050;
  background: #f0f6f9;
  border-radius: 0.25em;
}

.canvas > pre {
  overflow: scroll;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.4);
}

.kg-embed-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Default to 16 / 9 aspect ratio for YouTube & Vimeo embeds  */
.kg-embed-card > :where(iframe[src*="youtube.com"], iframe[src*="vimeo.com"]) {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.kg-image-card img {
  margin: auto;
}

/* Card captions
/* ---------------------------------------------------------- */
.kg-width-full.kg-card-hascaption {
  display: grid;
  grid-template-columns: inherit;
}

.kg-width-wide.kg-card-hascaption img {
  grid-column: wide-start/wide-end;
}

.kg-width-full.kg-card-hascaption img {
  grid-column: 1/-1;
}

.kg-width-full.kg-card-hascaption figcaption {
  grid-column: main-start/main-end;
}

/* Tables
/* ---------------------------------------------------------- */
.content table {
  border-collapse: collapse;
  width: 100%;
}

.content th {
  padding: 0.5em 0.8em;
  text-align: left;
  font-size: 0.75em;
  text-transform: uppercase;
}

.content td {
  padding: 0.4em 0.7em;
}

.content tbody tr:nth-child(2n+1) {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 1px;
}

.content tbody tr:nth-child(2n+2) td:last-child {
  box-shadow: inset 1px 0 rgba(0, 0, 0, 0.1), inset -1px 0 rgba(0, 0, 0, 0.1);
}

.content tbody tr:nth-child(2n+2) td {
  box-shadow: inset 1px 0 rgba(0, 0, 0, 0.1);
}

.content tbody tr:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.content-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  gap: 12vmin;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 10vmin;
  }
}
.content-grid.content-grid__two-thirds {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .content-grid.content-grid__two-thirds {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
  }
}

.home-lead {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-x);
  color: var(--color-base-light);
  animation: fadeIn 0.5s ease-out;
}
.home-lead a {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}
.home-lead a:after {
  content: "\f135";
  font-family: bootstrap-icons;
  padding-left: var(--gutter-x);
  transition: transform 0.2s ease;
}
.home-lead a:hover:after {
  transform: translateX(4px);
}
.home-lead h1 {
  font-size: var(--text-xxl);
}

.home-offer {
  animation: fadeIn 0.5s ease-out 0.15s both;
}
.home-offer a {
  text-decoration: none;
  color: var(--color-base);
}
.home-offer a:hover, .home-offer a:visited {
  color: var(--color-black-green);
}
.home-offer .home-offer__header {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--color-base-light);
  margin-bottom: 0.5rem;
}
.home-offer .home-offer__header:not(:first-child) {
  margin-top: calc(var(--gutter-x) * 2);
}
.home-offer .home-offer__list li {
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.home-offer .home-offer__list li::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}
.home-offer .home-offer__list li:hover::before {
  width: 100%;
}
.home-offer .home-offer__list li > a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem var(--gutter-x);
  padding: 1rem 0;
  font-size: var(--text-md);
  text-decoration: none;
}
@media (min-width: 640px) {
  .home-offer .home-offer__list li > a {
    grid-template-columns: 1fr 2fr auto;
    align-items: center;
  }
}
.home-offer .home-offer__list li > a::after {
  content: "→";
  color: var(--color-border);
  transition: color 0.2s ease, transform 0.2s ease;
  grid-row: span 2;
  align-self: center;
}
@media (min-width: 640px) {
  .home-offer .home-offer__list li > a::after {
    grid-row: auto;
  }
}
.home-offer .home-offer__list li > a:hover::after {
  color: var(--color-primary);
  transform: translateX(4px);
}
.home-offer .home-offer__list li > a:hover h6 {
  color: var(--color-primary);
}
.home-offer .home-offer__list li > a p {
  color: var(--color-base-light);
  grid-column: 1;
}
@media (min-width: 640px) {
  .home-offer .home-offer__list li > a p {
    grid-column: auto;
  }
}
.home-offer .home-offer__list li > a h6 {
  font-size: var(--text-md);
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-base);
  transition: color 0.2s ease;
}

/**
PAGE
 */
article.page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
article.page .page-header {
  color: var(--color-base-light);
}
article.page .page-header .back-link {
  display: inline-block;
  font-size: var(--text-md);
  color: var(--color-base-light);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}
article.page .page-header .back-link:hover {
  color: var(--color-base);
}
article.page .page-content {
  animation: fadeIn 0.4s ease-out 0.1s both;
}
article.page.page__long-form .page-header p {
  font-size: var(--text-md);
}
article.page.page__long-form .page-content {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius);
}
@media (min-width: 768px) {
  article.page.page__long-form {
    grid-template-columns: 1fr 2fr;
  }
  article.page.page__long-form .page-header {
    align-self: start;
    position: sticky;
    top: calc(1.5 * var(--gutter-x));
    padding-right: var(--gutter-x);
  }
  article.page.page__long-form .page-content {
    padding: 2.5rem;
  }
}
article.page.page__long-form.page__paper .page-content {
  background: var(--color-surface);
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.04), 6px 8px 20px rgba(0, 0, 0, 0.08), 12px 16px 40px rgba(0, 0, 0, 0.05);
  /* Signature */
}
article.page.page__long-form.page__paper .page-content img {
  height: 6rem;
  margin-bottom: -1rem;
}
article.page.page__long-form.page__paper .page-content p {
  line-height: 1.8;
}
article.page.page__long-form.page__paper .page-content p + p {
  margin-top: 1.5em;
}
@media (min-width: 768px) {
  article.page.page__long-form.page__paper .page-content {
    padding: 3rem;
    animation: fadeInPaper 0.4s ease-out 0.1s both;
  }
}

@keyframes fadeInPaper {
  from {
    opacity: 0;
    transform: translateY(8px) rotate(-0.5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-0.5deg);
  }
}
/* Blocks layout for service pages */
article.page.page__blocks {
  display: block;
  max-width: 80rem;
  margin: 0 auto;
}
article.page.page__blocks .page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
article.page.page__blocks .page-header.page-header--arrow {
  border-bottom: none;
}
article.page.page__blocks .page-header.page-header--arrow::after {
  content: "\f128";
  font-family: bootstrap-icons;
  display: block;
  margin-top: 2rem;
  font-size: var(--text-xl);
  color: var(--color-border);
}
article.page.page__blocks .page-header .back-link {
  margin-bottom: 1.5rem;
}
article.page.page__blocks .page-header h1 {
  font-size: var(--h1);
  margin-bottom: 1rem;
}
article.page.page__blocks .page-header p {
  font-size: var(--text-lg);
  color: var(--color-base-light);
  max-width: 60rem;
  margin: 0 auto;
}
article.page.page__blocks .page-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-block {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius);
}
@media (min-width: 40rem) {
  .service-block {
    padding: 2.5rem;
  }
}
.service-block h2 {
  font-size: var(--h4);
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.service-block p {
  color: var(--color-base-light);
  line-height: 1.7;
}
.service-block p + p {
  margin-top: 1em;
}
.service-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-block ul li {
  position: relative;
  padding-left: 2.8rem;
  margin-bottom: 0.75rem;
  color: var(--color-base-light);
}
.service-block ul li::before {
  content: "\f26b";
  font-family: bootstrap-icons;
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--color-primary);
}

/* Logo track breakout to container width */
article.page.page__blocks .logo-carousel {
  width: min(var(--large), 100vw - 2 * var(--gutter-x));
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 3rem;
}

.service-cta {
  text-align: center;
  padding: 2rem 0;
}
.service-cta .btn {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-base);
  transform: translateY(0);
  transition: background 0.25s ease-out, transform 0.25s ease-out;
}
.service-cta .btn:hover {
  background: var(--color-black-green);
  transform: translateY(-2px);
  transition: background 0.25s ease-out, transform 0.25s ease-out;
}

.paper {
  background: #fff;
  padding: 3rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.04);
  transform: rotate(-0.5deg);
}
@media (min-width: 40rem) {
  .paper {
    padding: 4rem;
  }
}
.paper p {
  line-height: 1.8;
}
.paper p + p {
  margin-top: 1.5em;
}
.paper {
  /* Signature */
}
.paper p:last-of-type {
  margin-top: 2.5rem;
}

/* Contact hero */
.contact-hero {
  position: relative;
}

.contact-intro {
  margin: 0 0 1rem;
  color: var(--color-base-light);
}

.contact-email {
  display: block;
  font-size: clamp(2.5rem, 2rem + 4vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
  color: var(--color-base);
  word-break: break-word;
}
.contact-email:hover {
  color: var(--color-primary);
}

.contact-hero--flipped {
  text-align: center;
}
.contact-hero--flipped .contact-email {
  margin-bottom: 1.5rem;
}
.contact-hero--flipped .contact-intro {
  margin: 0;
  font-size: var(--text-base);
}

/* Contact flip layout - email first, minimal header */
article.page.page__contact-flip {
  display: block;
  max-width: 800px;
  margin: 0 auto;
}
article.page.page__contact-flip .page-header {
  margin-bottom: 3rem;
}
article.page.page__contact-flip .page-header h1 {
  font-size: var(--h3);
  color: var(--color-base-light);
  font-weight: 400;
}
article.page.page__contact-flip .page-header p:empty {
  display: none;
}
article.page.page__contact-flip .page-content {
  text-align: left;
}

/* Logo mini - static row for home page */
.logo-mini {
  margin-top: var(--gutter-x);
}

.logo-mini__label {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-base-light);
  margin-bottom: 0.75rem;
}

.logo-mini__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (min-width: 40rem) {
  .logo-mini__row {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
}

.logo-mini__cell {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 0.4rem;
}
@media (min-width: 40rem) {
  .logo-mini__cell {
    height: 5rem;
    padding: 1rem 0.5rem;
  }
}

.logo-mini__item {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(100%);
}

/* Services list page */
.services-list {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 2rem;
  transform: rotate(-0.5deg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.04);
}
@media (min-width: 40rem) {
  .services-list {
    padding: 2.5rem 3rem;
  }
}
.services-list h3 {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-base-light);
  margin-top: 3rem;
  margin-bottom: 0.5rem;
}
.services-list h3:first-child {
  margin-top: 0;
}

a.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 2px solid var(--color-border);
  text-decoration: none;
  position: relative;
}
a.service-item::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}
a.service-item:hover::before {
  width: 100%;
}
a.service-item:last-of-type {
  border-bottom: none;
}
a.service-item .service-item__content {
  flex: 1;
}
a.service-item h2 {
  font-size: var(--h3);
  margin-bottom: 0.75rem;
  line-height: 1.25;
  color: var(--color-base);
  transition: color 0.2s ease;
}
a.service-item p {
  color: var(--color-base-light);
  margin: 0;
  line-height: 1.7;
  max-width: 55ch;
}
a.service-item::after {
  content: "→";
  font-size: var(--text-lg);
  color: var(--color-border);
  transition: color 0.2s ease, transform 0.2s ease;
}
a.service-item:hover h2 {
  color: var(--color-primary);
}
a.service-item:hover::after {
  color: var(--color-primary);
  transform: translateX(4px);
}

.nav {
  position: relative;
  z-index: 10;
  padding: var(--gutter-x) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .nav-brand {
  display: flex;
  align-items: center;
  background: var(--color-brand);
  padding: 0.6rem 1rem;
  border-radius: 100px;
}
.nav .nav-brand .nav-brand__logo {
  height: 2.2rem;
}
@media (min-width: 30rem) {
  .nav .nav-brand {
    padding: 0.9rem 1.25rem;
  }
  .nav .nav-brand .nav-brand__logo {
    height: 3rem;
  }
}
.nav .nav-pill {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: var(--color-brand);
  padding: 0.35rem;
  border-radius: 100px;
  font-size: var(--text-xs);
}
@media (min-width: 30rem) {
  .nav .nav-pill {
    gap: 0.25rem;
    padding: 0.5rem;
    font-size: var(--text-sm);
  }
}
.nav .nav-link {
  padding: 0.9rem 0.9rem;
  border-radius: 100px;
  transition: background 0.3s ease, color 0.3s ease;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 30rem) {
  .nav .nav-link {
    padding: 1.2rem 1.25rem;
  }
}
.nav .nav-link:hover {
  background: white;
}
.nav .nav-link.is-active {
  background: var(--color-base);
  color: var(--color-bg);
  font-weight: 700;
}

.container {
  display: flex;
  flex-direction: column;
  max-width: var(--large);
  padding-left: var(--gutter-x);
  padding-right: var(--gutter-x);
  margin: 0 auto;
}
.container .main {
  flex-grow: 1;
  margin: calc(2 * var(--gutter-x)) 0;
}

.footer {
  padding: var(--gutter-x) 0;
  font-size: var(--text-md);
  color: var(--color-base-light);
}
.footer:before {
  display: block;
  content: "";
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border) 20%, var(--color-border) 80%, transparent);
  width: 100%;
  margin-bottom: var(--gutter-x);
}
.footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
@media (min-width: 40rem) {
  .footer .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer .copy {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
}
.footer .contact {
  display: flex;
  gap: 1.5rem;
}
.footer .contact a {
  transition: color 0.2s ease;
  font-size: var(--text-sm);
}
.footer .contact a:hover {
  color: var(--color-base);
}

.logo-carousel {
  margin: 3rem 0;
  position: relative;
  width: 100%;
  min-height: 184px;
  overflow: hidden;
}

.logo-carousel__title {
  text-align: center;
  font-size: var(--text-md);
  color: var(--color-base-light);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.logo-track {
  display: flex;
  animation: scroll 120s linear infinite;
  width: fit-content;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 140px;
  height: 140px;
  margin: 0 20px;
  padding: 2.8rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-background);
  border: 1px solid #C1BBB2;
  border-radius: 12px;
  font-weight: 600;
  color: #666;
  transition: transform 0.3s ease;
}

.logo-item img {
  max-height: 100%;
  max-width: 100%;
}

/* Duplicate the logos for seamless loop */
.logo-track::after {
  content: "";
  position: absolute;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* 10 logos × 200px width + 10 × 40px margins = 2400px */
    transform: translateX(-2400px);
  }
}
.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg) 0%, var(--color-bg) 20%, transparent 100%);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg) 0%, var(--color-bg) 20%, transparent 100%);
}

/* Mini version for home page sidebar */
.logo-carousel--mini {
  margin: 0;
  margin-top: auto;
  min-height: 100px;
  position: relative;
  overflow: hidden;
}
.logo-carousel--mini .logo-carousel__title {
  text-align: left;
  font-size: var(--text-sm);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 3;
}
.logo-carousel--mini .logo-track {
  position: absolute;
  left: 0;
  bottom: 0;
  animation: scroll-mini 45s linear infinite;
}
.logo-carousel--mini .logo-item {
  flex: 0 0 70px;
  height: 70px;
  margin: 0 8px;
  padding: 1rem 0.6rem;
  border-radius: 8px;
}
.logo-carousel--mini::before, .logo-carousel--mini::after {
  width: 60px;
}

@keyframes scroll-mini {
  0% {
    transform: translateX(0);
  }
  100% {
    /* 11 logos × (70px + 16px margin) = 946px */
    transform: translateX(-946px);
  }
}
.bio-header {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .bio-header {
    flex-direction: row;
  }
}
.bio-photo {
  max-width: 224px;
  height: auto;
}

.bio-photo img {
  border-radius: 64px;
}

.bio-title {
  padding: 2rem 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .bio-title {
    padding: 0 0 0 2rem;
  }
}
/* Service Detail Page
/* Pure typographic approach — no containers, just rhythm
/* ---------------------------------------------------------- */
/* Dark Header — full bleed green background extending to top */
article.page.page--dark-header {
  position: relative;
}
article.page.page--dark-header .page-header {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-bottom: 3.5rem;
  margin-bottom: 5rem;
}
article.page.page--dark-header .page-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--color-primary);
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  top: -100vh;
  bottom: 0;
}
article.page.page--dark-header .page-header .back-link {
  color: #fff;
}
article.page.page--dark-header .page-header .back-link:hover {
  color: var(--color-brand);
}
article.page.page--dark-header .page-header h1 {
  color: var(--color-brand);
}
article.page.page--dark-header .page-header p {
  color: #fff;
}
article.page.page--dark-header .page-header .glance {
  border-color: transparent;
  position: relative;
}
article.page.page--dark-header .page-header .glance::before, article.page.page--dark-header .page-header .glance::after {
  content: "";
  position: absolute;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}
article.page.page--dark-header .page-header .glance::before {
  top: 0;
}
article.page.page--dark-header .page-header .glance::after {
  bottom: 0;
}
article.page.page--dark-header .page-header .glance__item {
  color: rgba(255, 255, 255, 0.8);
}
article.page.page--dark-header .page-header .glance__item::before {
  color: var(--color-brand);
}
article.page.page--dark-header .page-header .glance__item--result {
  color: #fff;
}

/* Intro — tilted paper sheet */
.service-intro {
  color: var(--color-base-light);
  line-height: 1.8;
  margin-bottom: 4rem;
  padding: 2.5rem;
  background: #fff;
  transform: rotate(-0.5deg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.04);
}
@media (min-width: 40rem) {
  .service-intro {
    padding: 3rem;
  }
}

.service-intro p + p {
  margin-top: 1em;
}

/* Quick Glance — horizontal scannable line */
.glance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  padding: 1.5rem 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* When glance is in header, header loses its own border */
.page-header--glance {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.glance__item {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-base-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.glance__item::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: 600;
}

.glance__item--result {
  color: var(--color-base);
  font-weight: 500;
}

.glance__item--result::before {
  content: "→";
}

/* Sections — typographic rhythm */
.audit-section {
  margin-bottom: 5rem;
}

.audit-section__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-base);
  margin-bottom: 1rem;
  display: inline-block;
  background: var(--color-brand);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
}

.audit-section__title {
  font-size: var(--h2);
  color: var(--color-base);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.audit-section__intro {
  color: var(--color-base-light);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 60ch;
}

/* Subsections — Process style with green border and step numbers */
.audit-section {
  counter-reset: process-step;
}

.audit-subsection {
  margin-bottom: 2.5rem;
  padding-left: 2rem;
  border-left: 3px solid var(--color-washed-green);
  position: relative;
  counter-increment: process-step;
}

.audit-subsection::before {
  content: counter(process-step);
  position: absolute;
  left: -1.4rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-primary);
  color: var(--color-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 600;
}

.audit-subsection:last-child {
  margin-bottom: 0;
}

.audit-subsection__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-base);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  padding-left: 1rem;
}

.audit-subsection__text {
  color: var(--color-base-light);
  line-height: 1.75;
  padding-left: 1rem;
}

.audit-subsection__text p + p {
  margin-top: 0.75em;
}

/* Lists */
.audit-subsection ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0 0;
}

.audit-subsection li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-base-light);
  line-height: 1.65;
  position: relative;
}

.audit-subsection li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--color-washed-green);
  border-radius: 50%;
}

.audit-subsection li:last-child {
  margin-bottom: 0;
}

/* Livrables section — card-based style */
.audit-section--livrables {
  background: linear-gradient(180deg, rgba(8, 61, 48, 0.03) 0%, rgba(8, 61, 48, 0.06) 100%);
  margin-left: -2rem;
  margin-right: -2rem;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  position: relative;
}
@media (min-width: 40rem) {
  .audit-section--livrables {
    margin-left: -3rem;
    margin-right: -3rem;
    padding: 3.5rem 3rem;
  }
}

.audit-section--livrables .audit-subsection {
  border-left: none;
  padding-left: 0;
  background: var(--color-surface);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
  counter-increment: none;
}
@media (min-width: 40rem) {
  .audit-section--livrables .audit-subsection {
    padding: 2rem;
  }
}

.audit-section--livrables .audit-subsection::before {
  content: "✓";
  position: absolute;
  left: 1.75rem;
  top: 1.75rem;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-black-green) 100%);
  color: var(--color-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 40rem) {
  .audit-section--livrables .audit-subsection::before {
    left: 2rem;
    top: 2rem;
  }
}

.audit-section--livrables .audit-subsection__title {
  padding-left: 2.75rem;
  color: var(--color-primary);
}

.audit-section--livrables .audit-subsection__text {
  padding-left: 2.75rem;
}

/* Closing section — tilted paper sheet */
.audit-section--closing {
  margin-top: 5rem;
  margin-bottom: 2rem;
  padding: 2.5rem;
  background: #fff;
  transform: rotate(-0.5deg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.04);
}
@media (min-width: 40rem) {
  .audit-section--closing {
    padding: 3rem;
  }
}

.audit-section--closing .audit-section__title {
  color: var(--color-base);
  margin-bottom: 1rem;
}

.audit-section--closing p {
  color: var(--color-base-light);
  line-height: 1.8;
  max-width: 60ch;
}

.audit-section--closing p + p {
  margin-top: 1em;
}

/*# sourceMappingURL=main.css.map */