:root {
  --ink: #172c31;
  --paper: #faf8f3;
  --sand: #efe9df;
  --clay: #c56f4c;
  --sage: #9fae9c;
  --line: #d8d6cf;
  --white: #fff;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.65 var(--sans);
}
a {
  color: inherit;
  text-decoration: none;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  color: #fff;
  background: var(--ink);
  padding: 0.6rem 1rem;
}
.skip-link:focus {
  top: 1rem;
}
.header {
  height: 76px;
  display: flex;
  align-items: center;
  background: rgba(250, 248, 243, 0.94);
  position: sticky;
  top: 0;
  z-index: 20;
  transition: box-shadow 0.2s;
}
.header.is-scrolled {
  box-shadow: 0 2px 14px rgba(23, 44, 49, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand b {
  font-weight: 500;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  background: var(--ink);
  color: var(--paper);
  font: 700 12px var(--serif);
  letter-spacing: -0.08em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 14px;
  font-weight: 500;
}
.nav > a:not(.button) {
  transition: color 0.2s;
}
.nav > a:not(.button):hover {
  color: var(--clay);
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  width: 38px;
  height: 38px;
  padding: 7px;
  cursor: pointer;
}
.menu-button span {
  height: 1.5px;
  width: 100%;
  display: block;
  margin: 6px 0;
  background: var(--ink);
}
.button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--clay);
  border-color: var(--clay);
  transform: translateY(-2px);
}
.button span {
  font-size: 18px;
  line-height: 10px;
}
.button-small {
  padding: 11px 15px;
}
.button-outline {
  background: transparent;
  border-color: #c7d1c3;
}
.button-outline:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.hero {
  min-height: 670px;
  position: relative;
  overflow: hidden;
  background: #eae6dc;
  isolation: isolate;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 44, 49, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 44, 49, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000 0%, #000 50%, transparent 85%);
  z-index: -1;
}
.hero-content {
  padding: 94px 0 82px;
  position: relative;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #5a6e6b;
}
.eyebrow i {
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.light {
  color: #c6d5c2;
}
.hero h1,
.section h2,
.contact h2 {
  max-width: 690px;
  margin: 22px 0 22px;
  font: 700 clamp(48px, 6vw, 80px)/0.99 var(--serif);
  letter-spacing: -0.05em;
}
.hero h1 em {
  color: var(--clay);
  font-style: italic;
}
.hero-copy {
  max-width: 515px;
  margin: 0;
  color: #526161;
  font-size: 18px;
  line-height: 1.6;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.text-link {
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  gap: 11px;
  align-items: center;
}
.text-link span {
  font-size: 18px;
  color: var(--clay);
}
.hero-trust {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  line-height: 1.45;
}
.hero-trust p {
  margin: 0;
}
.trust-avatars {
  display: flex;
  padding-left: 4px;
}
.trust-avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ded2c0;
  border: 2px solid var(--paper);
  margin-left: -5px;
  font: 700 10px var(--serif);
}
.trust-avatars span:nth-child(2) {
  background: #a9b6aa;
}
.trust-avatars span:nth-child(3) {
  background: #c98665;
}
.hero-art {
  position: absolute;
  width: 47vw;
  max-width: 700px;
  height: 100%;
  right: 0;
  top: 0;
  background: #d3a58e;
  overflow: hidden;
  z-index: -1;
}
.art-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.art-circle-one {
  height: 760px;
  width: 760px;
  right: -150px;
  top: -90px;
}
.art-circle-two {
  height: 510px;
  width: 510px;
  right: -35px;
  top: 100px;
  border-width: 38px;
  border-color: rgba(238, 228, 215, 0.55);
}
.art-card {
  position: absolute;
  left: 21%;
  top: 21%;
  height: 335px;
  width: 270px;
  color: #fdf9f1;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 27px;
  background: rgba(25, 48, 51, 0.87);
  box-shadow: 20px 24px 0 rgba(23, 44, 49, 0.1);
  transform: rotate(-6deg);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.art-card strong {
  display: block;
  margin-top: 74px;
  font: 700 33px/0.98 var(--serif);
  text-transform: none;
  letter-spacing: -0.04em;
}
.art-card i {
  position: absolute;
  bottom: 21px;
  right: 24px;
  font: 40px var(--serif);
  color: #d2b56a;
}
.art-line {
  height: 1px;
  width: 210px;
  background: #f3e8dd;
  position: absolute;
  bottom: 17%;
  left: 9%;
  transform: rotate(-36deg);
}
.assurance {
  background: var(--ink);
  color: #e7ece7;
}
.assurance-grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
.assurance-grid div {
  display: flex;
  gap: 13px;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 28px;
  font-size: 13px;
}
.assurance-grid div:first-child {
  padding-left: 0;
}
.assurance-grid div:last-child {
  border: 0;
}
.assurance-grid b {
  font: 600 14px var(--serif);
  color: #bd8a6b;
}
.section {
  padding: 118px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 44px;
  margin-bottom: 53px;
}
.section h2 {
  font-size: clamp(37px, 4.3vw, 57px);
  max-width: 580px;
  margin: 16px 0 0;
}
.section-heading > p {
  max-width: 330px;
  margin: 0;
  color: #5f6d6b;
  font-size: 15px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  min-height: 310px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 27px;
  position: relative;
  /* A column, so the link is pushed down by the content rather than pinned to
     a fixed offset that longer descriptions would run underneath. */
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}
.service-card:hover {
  background: #f0ece3;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.service-icon {
  display: block;
  width: 34px;
  height: 34px;
  color: var(--clay);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-number {
  position: absolute;
  top: 27px;
  right: 27px;
  color: #9da6a2;
  font-size: 11px;
}
.service-card h3,
article.service-card h2 {
  margin: 58px 0 8px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
  max-width: none;
}
.service-card p {
  color: #5f6d6a;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 255px;
}
.service-card a {
  margin-top: auto;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
}
.service-card a span {
  color: var(--clay);
  font-size: 16px;
  padding-left: 7px;
}
.process {
  color: #fff;
  background: var(--ink);
  padding: 112px 0;
}
.process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
}
.process h2 {
  margin-top: 20px;
}
.process-intro > p {
  color: #bac6bf;
  max-width: 420px;
  margin-bottom: 30px;
}
.process-steps {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.process-steps li {
  display: flex;
  gap: 25px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.process-steps span {
  color: #c58462;
  font: 600 14px var(--serif);
}
.process-steps h3 {
  font-size: 21px;
  margin: 0 0 4px;
}
.process-steps p {
  color: #bac6bf;
  font-size: 14px;
  margin: 0;
  max-width: 370px;
}
.approach {
  background: #f0ece4;
}
.approach-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  position: relative;
}
.approach-track::before {
  /* Runs centre-to-centre between the first and last marker, behind both. */
  content: "";
  position: absolute;
  top: 44px;
  left: 44px;
  right: calc((100% - 104px) / 5 - 44px);
  height: 1px;
  background: var(--line);
}
.approach-step {
  position: relative;
}
.approach-marker {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
}
.approach-marker svg {
  display: block;
  width: 100%;
  height: 100%;
}
.approach-marker-face {
  fill: var(--ink);
}
.approach-marker-edge {
  fill: none;
  stroke: rgba(255, 255, 255, 0.17);
  stroke-width: 1.5;
}
.approach-marker b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #e8c9b6;
  font: 600 19px var(--serif);
  letter-spacing: -0.03em;
}
.approach-step h3,
li.approach-step h2 {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
  max-width: none;
}
.approach-step p {
  color: #5f6d6a;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: center;
}
.about-visual {
  height: 490px;
  background: #d1ddd0;
  position: relative;
  overflow: hidden;
}
.about-shape {
  position: absolute;
  width: 370px;
  height: 370px;
  border: 1px solid #71877e;
  border-radius: 50%;
  left: 15%;
  top: 12%;
  box-shadow: 0 0 0 38px rgba(250, 248, 243, 0.38);
}
.about-quote {
  position: absolute;
  bottom: 28px;
  left: 0;
  background: var(--ink);
  color: #f9f5ed;
  width: 82%;
  padding: 20px 26px;
  font: 600 18px/1.35 var(--serif);
}
.about-stamp {
  position: absolute;
  right: 29px;
  top: 28px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid;
  place-content: center;
  text-align: center;
  font: 700 21px/0.75 var(--serif);
  transform: rotate(12deg);
}
.about-stamp span {
  font: 7px var(--sans);
  letter-spacing: 0.14em;
}
.about-content > p {
  color: #5f6d6a;
  max-width: 450px;
  margin: 0;
}
.feature-list {
  margin-top: 32px;
}
.feature-list > div {
  display: flex;
  gap: 12px;
  margin-top: 17px;
}
.feature-list span {
  color: var(--clay);
  font-weight: bold;
}
.feature-list p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: #667370;
}
.feature-list b {
  color: var(--ink);
}
.ethics {
  color: #fff;
  background: var(--ink);
}
.ethics-heading {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.ethics-heading .eyebrow {
  justify-content: center;
}
.ethics h2 {
  margin: 16px auto 0;
}
.ethics-heading > p {
  color: #bac6bf;
  font-size: 15px;
  margin: 18px auto 0;
  max-width: 470px;
}
.ethics-layout {
  display: grid;
  grid-template-columns: 1fr minmax(210px, 290px) 1fr;
  align-items: center;
  gap: 46px;
  margin-top: 58px;
}
.ethics-column {
  display: grid;
  gap: 38px;
}
.ethics-column:first-child {
  text-align: right;
  justify-items: end;
}
.ethics-card {
  max-width: 330px;
}
.ethics-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 13px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e8c9b6;
  font: 600 13px var(--serif);
}
.ethics-card h3 {
  font-size: 19px;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.ethics-card p {
  color: #bac6bf;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.ethics-diagram svg {
  display: block;
  width: 100%;
  height: auto;
}
.ethics-orbit {
  fill: none;
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1;
}
.ethics-quad .q {
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linejoin: round;
}
.q-1 {
  fill: var(--clay);
}
.q-2 {
  fill: #bd8a6b;
}
.q-3 {
  fill: var(--sage);
}
.q-4 {
  fill: #6f8378;
}
.ethics-core {
  fill: var(--ink);
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 1;
}
.ethics-tick {
  fill: none;
  stroke: #e8c9b6;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.testimonials {
  background: #f0ece4;
  padding-top: 95px;
  padding-bottom: 105px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.testimonial-grid blockquote {
  background: var(--paper);
  margin: 0;
  padding: 28px;
  min-height: 265px;
  display: flex;
  flex-direction: column;
}
.quote-mark {
  font: 46px/0.8 var(--serif);
  color: var(--clay);
}
.testimonial-grid blockquote > p {
  font: 18px/1.5 var(--serif);
  margin: 18px 0;
}
.testimonial-grid footer {
  margin-top: auto;
  font-size: 12px;
}
.testimonial-grid footer b,
.testimonial-grid footer span {
  display: block;
}
.testimonial-grid footer span {
  color: #75807d;
  margin-top: 2px;
}
.contact {
  background: #ae603f;
  color: #fff;
  padding: 105px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
}
.contact h2 {
  /* Sits under the page hero's h1 now that the form has its own page, so it
     must read as subordinate to it rather than as the page's largest text. */
  margin-top: 18px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
  max-width: 420px;
}
.contact-copy > p {
  max-width: 390px;
  color: #fff;
}
.contact-details {
  margin-top: 40px;
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}
.contact-details a:hover {
  text-decoration: underline;
}
.form-panel {
  background: var(--paper);
  color: var(--ink);
  padding: 32px;
}
.form-panel form {
  display: grid;
  gap: 17px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-panel label {
  display: block;
  margin-bottom: 5px;
  color: #5d6966;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  border: 1px solid #d8d7d0;
  background: #fff;
  padding: 11px 12px;
  border-radius: 0;
  color: var(--ink);
  font: 14px var(--sans);
  outline: 0;
}
.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 2px rgba(197, 111, 76, 0.15);
}
.form-panel textarea {
  resize: vertical;
}
.errorlist {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  color: #b1432a;
  font-size: 11px;
}
.form-panel .button {
  justify-self: start;
  margin-top: 3px;
}
.form-note {
  margin: 0;
  color: #78827e;
  font-size: 10px;
  line-height: 1.5;
}
.form-message {
  background: #dae9dc;
  border-left: 3px solid #52815d;
  padding: 11px;
  margin-bottom: 15px;
  font-size: 13px;
}
.footer {
  background: #f0ece4;
  padding: 62px 0 26px;
  font-size: 13px;
  color: #5e6d68;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.footer-brand > p {
  margin: 14px 0 0;
  max-width: 260px;
  line-height: 1.55;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.footer-social a {
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.footer-social a:hover {
  color: var(--clay);
  border-color: var(--clay);
}
.footer-nav h2,
.footer-contact h2 {
  margin: 0 0 15px;
  font: 700 10px var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a6e6b;
}
.footer-nav ul,
.footer-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--clay);
}
.footer-contact address {
  margin-top: 16px;
  font-style: normal;
  line-height: 1.55;
  color: #5f6966;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 22px;
  font-size: 12px;
}
.footer-bottom p {
  margin: 0;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-legal a:hover,
.footer-legal .link-button:hover {
  color: var(--clay);
}

/* Blog and article pages */
.insights-preview {
  background: #f0ece4;
}

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

.blog-card {
  display: flex;
  min-height: 275px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
  box-shadow: 0 14px 30px rgba(23, 44, 49, 0.08);
  transform: translateY(-4px);
}

.blog-card-meta,
.article-meta {
  margin: 0;
  color: #70807b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.blog-card-meta span,
.article-meta span {
  padding: 0 5px;
  color: var(--clay);
}

.blog-card h2,
.blog-card h3 {
  margin: 18px 0 10px;
  font: 700 25px/1.15 var(--serif);
  letter-spacing: -0.035em;
}

.blog-card h3 {
  font-size: 22px;
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
  color: var(--clay);
}

.blog-card > p:not(.blog-card-meta) {
  margin: 0;
  color: #5f6d6a;
  font-size: 14px;
  line-height: 1.6;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}

.blog-card-link {
  font-size: 12px;
  font-weight: 700;
}

.blog-card-link span {
  padding-left: 6px;
  color: var(--clay);
  font-size: 16px;
}

.view-count {
  color: #75827d;
  font-size: 11px;
}

.blog-hero {
  padding: 112px 0 104px;
  background: #eae6dc;
}

.blog-hero h1 {
  margin: 20px 0;
  font: 700 clamp(46px, 6vw, 76px) / 1 var(--serif);
  letter-spacing: -0.05em;
}

.blog-hero h1 em {
  color: var(--clay);
}

.blog-hero p {
  max-width: 500px;
  margin: 0;
  color: #596866;
  font-size: 17px;
}

.blog-listing {
  min-height: 440px;
}

.empty-state {
  max-width: 520px;
  margin: 25px auto;
  padding: 58px 24px;
  border: 1px solid var(--line);
  text-align: center;
}

.empty-state h2 {
  margin: 18px 0 7px;
  font: 700 31px/1.15 var(--serif);
  letter-spacing: -0.04em;
}

.empty-state p {
  margin: 0;
  color: #64716e;
}

.article-header {
  max-width: 850px;
  padding-top: 92px;
  padding-bottom: 52px;
}

.article-back {
  display: inline-block;
  margin-bottom: 38px;
  color: #596965;
  font-size: 13px;
  font-weight: 700;
}

.article-back:hover {
  color: var(--clay);
}

.article-header h1 {
  max-width: 790px;
  margin: 19px 0;
  font: 700 clamp(43px, 5.8vw, 70px) / 1.02 var(--serif);
  letter-spacing: -0.05em;
}

.article-excerpt {
  max-width: 630px;
  margin: 0;
  color: #596865;
  font-size: 19px;
  line-height: 1.6;
}

.article-author {
  margin: 26px 0 0;
  color: #5e6d69;
  font-size: 13px;
}

.article-author b {
  color: var(--ink);
}

.article-body {
  max-width: 760px;
  padding-bottom: 104px;
  color: #304342;
  font-size: 17px;
  line-height: 1.8;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 2.1em 0 0.65em;
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.article-body h2 {
  font-size: 35px;
}

.article-body h3 {
  font-size: 27px;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin: 0 0 1.35em;
}

.article-body ul,
.article-body ol {
  padding-left: 1.4em;
}

.article-body li + li {
  margin-top: 0.45em;
}

.article-body a {
  color: #a95537;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body blockquote {
  margin: 2em 0;
  padding: 4px 0 4px 25px;
  border-left: 3px solid var(--clay);
  color: #4f625e;
  font: 600 25px/1.45 var(--serif);
}

.article-body figure {
  max-width: 100%;
  margin: 2em 0;
}

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

.article-body figcaption {
  margin-top: 8px;
  color: #78837f;
  font-size: 12px;
  text-align: center;
}

.article-body table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
  font-size: 15px;
}

.article-body th,
.article-body td {
  padding: 10px;
  border: 1px solid var(--line);
  text-align: left;
}

.article-body th {
  background: #f0ece4;
}

.article-cta {
  padding: 66px 0;
  background: var(--ink);
  color: #fff;
}

.article-cta .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.article-cta h2 {
  margin: 16px 0 0;
  font: 700 clamp(31px, 4vw, 47px) / 1.05 var(--serif);
  letter-spacing: -0.04em;
}

/* Honeypot: off-screen rather than display:none, which naive bots skip. It is
   also aria-hidden and tabindex=-1, so nobody using the site ever meets it. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ---------------------------------------------------------------- utilities */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip-path: inset(50%);
}
.link-button {
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* A single, visible focus ring for keyboard users across the whole site. */
:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 2px;
}
.contact :focus-visible,
.process :focus-visible,
.ethics :focus-visible,
.article-cta :focus-visible {
  outline-color: #f2d9cb;
}
/* Anchor targets clear the sticky header. */
:target,
section[id] {
  scroll-margin-top: 92px;
}

/* -------------------------------------------------------------- breadcrumbs */
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: #5f6966;
}
.breadcrumbs li + li::before {
  content: "/";
  padding-right: 8px;
  color: #a9b2ae;
}
.breadcrumbs a:hover {
  color: var(--clay);
}
.breadcrumbs [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* ---------------------------------------------------------------- page hero */
.page-hero {
  background: #eae6dc;
  padding: 74px 0 66px;
}
.page-hero h1 {
  max-width: 640px;
  margin: 18px 0 20px;
  font: 700 clamp(40px, 5vw, 64px)/1.02 var(--serif);
  letter-spacing: -0.05em;
}
.page-hero h1 em {
  color: var(--clay);
  font-style: italic;
}
.page-hero > .shell > p {
  max-width: 560px;
  margin: 0;
  color: #566564;
  font-size: 17px;
}
.legal-updated {
  margin-top: 18px !important;
  font-size: 13px !important;
  color: #5f6966 !important;
}

/* --------------------------------------------------------------------- FAQ */
.faq-preview {
  background: #f0ece4;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--clay);
}
/* Plus sign that becomes a minus when the answer is open. */
.faq-item summary i {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}
.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.5px;
  background: var(--clay);
  transition: transform 0.2s ease;
}
.faq-item summary i::after {
  transform: rotate(90deg);
}
.faq-item[open] summary i::after {
  transform: rotate(0deg);
}
.faq-answer {
  padding: 0 52px 24px 0;
}
.faq-answer p {
  margin: 0;
  max-width: 760px;
  color: #5f6d6b;
  font-size: 15px;
  line-height: 1.65;
}
.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.faq-cta p {
  margin: 0;
  font: 600 19px var(--serif);
}
.faq-page .faq-list {
  margin-top: 4px;
}

/* -------------------------------------------------------------- legal pages */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 104px;
  padding: 22px;
  background: #f0ece4;
}
.legal-toc h2 {
  margin: 0 0 14px;
  font: 700 10px var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a6e6b;
}
.legal-toc ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 9px;
  font-size: 13px;
  color: #5f6d6b;
}
.legal-toc a:hover {
  color: var(--clay);
}
.legal-body {
  max-width: 760px;
}
.legal-body h2 {
  margin: 46px 0 14px;
  font: 700 26px/1.2 var(--serif);
  letter-spacing: -0.03em;
}
.legal-body h2:first-child {
  margin-top: 0;
}
.legal-body h3 {
  margin: 26px 0 10px;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.legal-body p,
.legal-body li {
  color: #556462;
  font-size: 15px;
  line-height: 1.72;
}
.legal-body p {
  margin: 0 0 15px;
}
.legal-body ul {
  margin: 0 0 18px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}
.legal-body a:not(.button) {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--clay);
}
.legal-body a:not(.button):hover {
  color: var(--clay);
}
.legal-address {
  margin: 0 0 18px;
  padding-left: 16px;
  border-left: 2px solid var(--line);
  font-style: normal;
  color: #667370;
  font-size: 14px;
  line-height: 1.6;
}
.legal-contact {
  margin-top: 50px;
  padding: 26px;
  background: #f0ece4;
}
.legal-contact h2 {
  margin-top: 0;
  font-size: 20px;
}
.legal-contact p {
  margin: 0;
}

/* ------------------------------------------------------------ contact extras */
.contact-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
  font-size: 14px;
}
.contact-points li {
  padding-left: 24px;
  position: relative;
  color: #fff;
}
.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 6px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg);
}
.form-field {
  display: grid;
}
.req {
  color: var(--clay);
}
.field-error,
.form-error-summary {
  margin: 6px 0 0;
  color: #9d3b22;
  font-size: 12px;
  line-height: 1.45;
}
.form-error-summary {
  margin: 0 0 14px;
  padding: 11px;
  background: #f8e4dd;
  border-left: 3px solid #9d3b22;
  font-size: 13px;
}
.form-panel [aria-invalid="true"] {
  border-color: #9d3b22;
}
.form-message-error {
  background: #f8e4dd;
  border-left-color: #9d3b22;
}
.form-note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ------------------------------------------------------------- article share */
.article-share {
  padding-bottom: 56px;
}
.article-share h2 {
  margin: 0 0 16px;
  font: 700 10px var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a6e6b;
}
.article-share ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.article-share a,
.share-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  background: transparent;
  font: 600 12px var(--sans);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.article-share a:hover,
.share-copy:hover {
  border-color: var(--clay);
  color: var(--clay);
}
.article-share svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ------------------------------------------------------------ cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 -6px 24px rgba(23, 44, 49, 0.22);
  transform: translateY(100%);
  transition: transform 0.28s ease;
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-inner {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cookie-banner h2 {
  margin: 0 0 5px;
  font: 700 15px var(--sans);
  letter-spacing: -0.01em;
}
.cookie-banner p {
  margin: 0;
  max-width: 660px;
  font-size: 13px;
  line-height: 1.55;
  color: #bac6bf;
}
.cookie-banner a {
  color: #e8c9b6;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner .link-button {
  color: #e8c9b6;
}
.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}
.cookie-actions .button {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}
.cookie-actions .button-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* --------------------------------------------------------------- error pages */
.error-page {
  padding: 104px 0 118px;
  background: #eae6dc;
  min-height: 62vh;
}
.error-code {
  font: 700 clamp(88px, 14vw, 168px)/0.8 var(--serif);
  letter-spacing: -0.06em;
  color: rgba(23, 44, 49, 0.1);
  margin-bottom: 30px;
}
.error-page h1 {
  max-width: 620px;
  margin: 16px 0 18px;
  font: 700 clamp(38px, 5vw, 60px)/1.02 var(--serif);
  letter-spacing: -0.05em;
}
.error-page h1 em {
  color: var(--clay);
  font-style: italic;
}
.error-page > .shell > p {
  max-width: 480px;
  margin: 0;
  color: #566564;
}
.error-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 32px;
}
.error-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 40px;
  margin-top: 58px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.error-links h2 {
  margin: 0 0 13px;
  font: 700 10px var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a6e6b;
}
.error-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  font-size: 14px;
}
.error-links a:hover {
  color: var(--clay);
}
.empty-state .service-icon {
  margin: 0 auto;
}
.empty-state .button {
  margin-top: 22px;
}

/* Respect a reduced-motion preference site-wide. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* ------------------------------------------------------------- highlights */
.highlight-grid,
.why-grid,
.careers-grid,
.governance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.highlight-card,
.why-card,
.careers-card,
.governance-card {
  background: var(--paper);
  padding: 30px 28px;
}
.highlight-card h3,
.why-card h3,
.careers-card h3 {
  margin: 20px 0 8px;
  font-size: 19px;
  letter-spacing: -0.03em;
}
.careers-card h3,
.highlight-card h3 {
  margin-top: 22px;
}
.why-card h3 {
  margin-top: 0;
}
.highlight-card p,
.why-card p,
.careers-card p,
.governance-card p {
  margin: 0;
  color: #5f6d6a;
  font-size: 14px;
  line-height: 1.6;
}

/* ------------------------------------------------------- legal lifecycle */
.lifecycle {
  background: #f0ece4;
}
.lifecycle-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  position: relative;
}
.lifecycle-track::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--line);
}
.lifecycle-step {
  position: relative;
  padding-top: 52px;
  text-align: center;
}
.lifecycle-step::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: var(--ink);
  border: 4px solid #f0ece4;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--ink);
}
.lifecycle-index {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  font: 600 11px var(--serif);
  color: #8a948f;
}
.lifecycle-step h3 {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* -------------------------------------------------- why cred sec / dark */
.why {
  background: var(--ink);
  color: #fff;
}
.why .section-heading > p {
  color: #bac6bf;
}
.why-grid {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.16);
}
.why-card {
  background: var(--ink);
}
.why-card p {
  color: #bac6bf;
}
.why-cta {
  margin-top: 40px;
}

/* ------------------------------------------------------------- purpose */
.purpose {
  background: #ae603f;
  color: #fff;
  padding: 84px 0;
}
.purpose-inner {
  max-width: 820px;
}
.purpose-statement {
  margin: 20px 0 0;
  font: 600 clamp(24px, 3.2vw, 36px)/1.3 var(--serif);
  letter-spacing: -0.03em;
}

/* ---------------------------------------------------------- governance */
.governance-card {
  position: relative;
  padding-top: 34px;
}
.governance-number {
  display: block;
  margin-bottom: 12px;
  font: 600 13px var(--serif);
  color: var(--clay);
}
article.governance-card h2 {
  margin: 0 0 8px;
  font: 700 18px/1.3 var(--serif);
  letter-spacing: -0.02em;
  max-width: none;
}
.governance-closing {
  margin: 44px 0 0;
  padding: 26px 30px;
  background: var(--ink);
  color: #fff;
  font: 600 19px/1.5 var(--serif);
  letter-spacing: -0.02em;
}

/* -------------------------------------------------------------- careers */
.careers-apply {
  margin-top: 44px;
  padding: 30px;
  background: #f0ece4;
  max-width: 640px;
}
.careers-apply h2 {
  margin: 0 0 10px;
  font: 700 21px var(--serif);
  letter-spacing: -0.03em;
  max-width: none;
}
.careers-apply p {
  margin: 0;
  color: #556462;
  font-size: 15px;
  line-height: 1.65;
}
.careers-apply a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--clay);
}

/* ------------------------------------------------------------ services */
.services-note {
  margin: 32px 0 0;
  max-width: 640px;
  color: #5f6d6a;
  font-size: 14px;
  line-height: 1.6;
}

/* ------------------------------------------------------ closing CTA band */
.contact-cta {
  background: var(--ink);
  color: #fff;
  padding: 74px 0;
}
.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.contact-cta h2 {
  margin: 16px 0 14px;
  font: 700 clamp(28px, 3.6vw, 42px)/1.1 var(--serif);
  letter-spacing: -0.04em;
  max-width: 520px;
}
.contact-cta p {
  margin: 0;
  max-width: 460px;
  color: #bac6bf;
  font-size: 15px;
  line-height: 1.6;
}
.contact-cta .contact-details {
  margin-top: 24px;
}
.button-light {
  flex: 0 0 auto;
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

/* ------------------------------------------------------- footer identity */
.footer-identity {
  margin: 14px 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1.5;
}
.footer-tagline {
  margin: 0;
  max-width: 260px;
  line-height: 1.55;
}
.contact-address {
  margin-top: 22px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

/* The navigation carries eight destinations, which stops fitting on one row
   well above phone width, so the drawer takes over earlier than the layout
   breakpoints below. `top: 100%` tracks the header's height at any size. */
@media (max-width: 1100px) {
  .menu-button {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    gap: 21px;
    align-items: flex-start;
    flex-direction: column;
    background: var(--paper);
    box-shadow: 0 7px 12px rgba(23, 44, 49, 0.09);
  }
  .nav.is-open {
    display: flex;
  }
  .nav .button {
    margin-top: 4px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 560px);
  }
  .header {
    height: 66px;
  }
  .hero {
    min-height: 780px;
  }
  .hero-content {
    padding: 68px 0 40px;
  }
  .hero h1 {
    font-size: 51px;
    max-width: 500px;
  }
  .hero-copy {
    font-size: 16px;
    max-width: 420px;
  }
  .hero-actions {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }
  .hero-trust {
    margin-top: 42px;
  }
  .hero-art {
    height: 255px;
    top: auto;
    bottom: 0;
    width: 100%;
    max-width: none;
    right: 0;
  }
  .art-circle-one {
    width: 360px;
    height: 360px;
    right: -66px;
    top: -98px;
  }
  .art-circle-two {
    width: 240px;
    height: 240px;
    top: 16px;
    right: 45px;
    border-width: 20px;
  }
  .art-card {
    height: 187px;
    width: 158px;
    top: 22px;
    left: 17%;
    padding: 15px;
    font-size: 6px;
  }
  .art-card strong {
    font-size: 20px;
    margin-top: 40px;
  }
  .art-card i {
    font-size: 25px;
    bottom: 9px;
    right: 13px;
  }
  .art-line {
    bottom: 18%;
    left: 9%;
    width: 170px;
  }
  .assurance-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 9px 0;
  }
  .assurance-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    min-height: 42px;
    padding-left: 0;
  }
  .assurance-grid div:last-child {
    border-bottom: 0;
  }
  .section {
    padding: 78px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading > p {
    margin-top: 17px;
  }
  .section h2 {
    font-size: 39px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 266px;
  }
  .process {
    padding: 80px 0;
  }
  .process-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .about-visual {
    height: 350px;
  }
  .about-shape {
    width: 250px;
    height: 250px;
    box-shadow: 0 0 0 27px rgba(250, 248, 243, 0.38);
  }
  .highlight-grid,
  .why-grid,
  .careers-grid,
  .governance-grid {
    grid-template-columns: 1fr;
  }
  .lifecycle-track {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lifecycle-track::before {
    top: 10px;
    bottom: 10px;
    left: 7px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .lifecycle-step {
    padding: 12px 0 12px 34px;
    text-align: left;
  }
  .lifecycle-step::before {
    top: 16px;
    left: 0;
    transform: none;
  }
  .lifecycle-index {
    position: static;
    display: block;
    margin-bottom: 2px;
  }
  .purpose {
    padding: 58px 0;
  }
  .contact-cta {
    padding: 54px 0;
  }
  .contact-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
  .governance-closing {
    padding: 22px;
    font-size: 17px;
  }
  .careers-apply {
    padding: 22px;
  }
  .approach-track {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .approach-track::before {
    display: none;
  }
  .approach-marker {
    width: 68px;
    height: 68px;
    margin-bottom: 17px;
  }
  .approach-marker b {
    font-size: 16px;
  }
  .ethics-layout {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 42px;
  }
  /* Drop the column boxes so the four cards stack in 01–04 reading order. */
  .ethics-column {
    display: contents;
  }
  .ethics-diagram {
    order: -1;
    width: min(230px, 62%);
    margin: 0 auto;
  }
  .ethics-column:first-child > :nth-child(1) {
    order: 1;
  }
  .ethics-column:last-child > :nth-child(1) {
    order: 2;
  }
  .ethics-column:first-child > :nth-child(2) {
    order: 3;
  }
  .ethics-column:last-child > :nth-child(2) {
    order: 4;
  }
  .ethics-column:first-child {
    text-align: left;
  }
  .ethics-card {
    max-width: none;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .blog-card-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero {
    padding: 76px 0 69px;
  }
  .blog-hero h1 {
    font-size: 48px;
  }
  .article-header {
    padding-top: 58px;
    padding-bottom: 37px;
  }
  .article-back {
    margin-bottom: 27px;
  }
  .article-header h1 {
    font-size: 43px;
  }
  .article-excerpt {
    font-size: 17px;
  }
  .article-body {
    padding-bottom: 72px;
    font-size: 16px;
  }
  .article-body h2 {
    font-size: 30px;
  }
  .article-body h3 {
    font-size: 24px;
  }
  .article-body blockquote {
    padding-left: 18px;
    font-size: 22px;
  }
  .article-cta {
    padding: 53px 0;
  }
  .article-cta .shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .testimonial-grid blockquote {
    min-height: 215px;
  }
  .contact {
    padding: 79px 0;
  }
  .contact h2 {
    font-size: 44px;
  }
  .form-panel {
    padding: 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .footer {
    padding: 44px 0 22px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .footer-legal {
    gap: 16px;
  }
  .page-hero {
    padding: 54px 0 48px;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .legal-toc {
    position: static;
  }
  .legal-body h2 {
    font-size: 22px;
    margin-top: 36px;
  }
  .legal-toc h2 {
    font-size: 10px;
  }
  .legal-contact h2 {
    font-size: 20px;
  }
  .empty-state h2 {
    font-size: 27px;
  }
  .blog-card h2 {
    font-size: 21px;
  }
  .faq-item summary {
    gap: 16px;
    font-size: 16px;
  }
  .faq-answer {
    padding-right: 0;
  }
  .faq-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .cookie-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 18px 0;
  }
  .cookie-actions .button {
    flex: 1;
    justify-content: center;
    gap: 0;
  }
  .error-page {
    padding: 68px 0 76px;
  }
  .error-links {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 44px;
  }
  .article-share ul {
    gap: 8px;
  }
}
@media (min-width: 761px) and (max-width: 1020px) {
  .hero-art {
    width: 39vw;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:last-child:nth-child(odd) {
    grid-column: span 2;
  }
  .approach-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 26px;
  }
  .approach-track::before {
    display: none;
  }
  .ethics-layout {
    gap: 28px;
    grid-template-columns: 1fr minmax(160px, 210px) 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .highlight-grid,
  .why-grid,
  .careers-grid,
  .governance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlight-card:last-child:nth-child(odd),
  .why-card:last-child:nth-child(odd),
  .careers-card:last-child:nth-child(odd),
  .governance-card:last-child:nth-child(odd) {
    grid-column: span 2;
  }
  .lifecycle-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 10px;
  }
  .lifecycle-track::before {
    display: none;
  }
  .legal-layout {
    grid-template-columns: 200px 1fr;
    gap: 38px;
  }
  .about-grid {
    gap: 5%;
  }
  .contact-grid {
    gap: 5vw;
  }
}
@media (min-width: 1021px) {
  /* A partial final row would otherwise expose the grid's own background. */
  .service-card:last-child:nth-child(3n + 2),
  .highlight-card:last-child:nth-child(3n + 2),
  .why-card:last-child:nth-child(3n + 2),
  .careers-card:last-child:nth-child(3n + 2),
  .governance-card:last-child:nth-child(3n + 2) {
    grid-column: span 2;
  }
  .service-card:last-child:nth-child(3n + 1),
  .highlight-card:last-child:nth-child(3n + 1),
  .why-card:last-child:nth-child(3n + 1),
  .careers-card:last-child:nth-child(3n + 1),
  .governance-card:last-child:nth-child(3n + 1) {
    grid-column: span 3;
  }
}
