:root {
  color-scheme: dark;
  --ink: #11130f;
  --ink-soft: #191c17;
  --ink-raised: #20241d;
  --paper: #f0ecdf;
  --muted: #a5a69b;
  --acid: #d8ff3e;
  --coral: #ff7052;
  --blue: #8ecbff;
  --line: rgba(240, 236, 223, .17);
  --line-strong: rgba(240, 236, 223, .35);
  --display: "Bodoni 72", Didot, "Iowan Old Style", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Century Gothic", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  min-width: 320px;
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 7%, rgba(216, 255, 62, .045), transparent 24rem),
    var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
p, h1, h2, h3 { overflow-wrap: break-word; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--acid); outline-offset: 5px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--acid);
  font-size: .75rem;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.site-header,
.site-footer,
main > section {
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  border-bottom: 1px solid var(--line);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-header nav { display: flex; gap: clamp(22px, 3vw, 48px); }
.site-header nav a,
.header-link { text-decoration: none; transition: color 180ms ease; }
.site-header nav a:hover,
.header-link:hover { color: var(--acid); }
.header-link { justify-self: end; }
.header-link span { margin-left: 7px; color: var(--acid); }

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  width: fit-content;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
  text-transform: lowercase;
}
.brand > span:last-child > span { color: var(--acid); }
.brand__signal {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(216, 255, 62, .08);
  animation: signal 2.8s ease-in-out infinite;
}

.kicker,
.section-number,
.client-row > div > p {
  margin: 0;
  color: var(--muted);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.kicker span { margin-right: 22px; color: var(--acid); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 1.05fr) minmax(430px, .95fr);
  gap: clamp(50px, 7vw, 116px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 9vh 0 13vh;
  overflow: hidden;
}
.hero::before {
  position: absolute;
  top: 8%;
  left: 46%;
  width: 1px;
  height: 77%;
  background: linear-gradient(transparent, var(--line) 12%, var(--line) 88%, transparent);
  content: "";
}
.hero__copy { position: relative; z-index: 1; animation: reveal 800ms cubic-bezier(.2, .75, .2, 1) both; }
.hero h1 {
  margin: clamp(42px, 6.5vh, 72px) 0 44px;
  font-family: var(--display);
  font-size: clamp(5rem, 8.8vw, 9.2rem);
  font-weight: 400;
  letter-spacing: -.074em;
  line-height: .75;
}
.hero h1 em,
.fit h2 em,
.principles h2 em,
.contact h2 em { color: var(--acid); font-weight: 400; }
.hero__lead {
  max-width: 610px;
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid var(--coral);
  color: #cbc8bd;
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.52vw, 1.4rem);
  line-height: 1.52;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.button {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  width: fit-content;
  padding: 16px 20px 15px;
  border: 1px solid var(--line-strong);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-3px); }
.button--primary { border-color: var(--acid); color: var(--ink); background: var(--acid); }
.button--primary:hover { border-color: var(--paper); background: var(--paper); }
.button--quiet:hover { border-color: var(--paper); background: rgba(240, 236, 223, .05); }
.button span { font-size: .95rem; }

.price-console {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(216, 255, 62, .025), rgba(216, 255, 62, 0)),
    var(--ink-soft);
  box-shadow: 22px 22px 0 rgba(0, 0, 0, .15);
  animation: reveal 800ms 180ms cubic-bezier(.2, .75, .2, 1) both;
}
.price-console::before {
  position: absolute;
  top: -8px;
  right: 28px;
  width: 64px;
  height: 8px;
  background: var(--acid);
  content: "";
}
.console__head { display: flex; justify-content: space-between; font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.console__head strong { display: flex; gap: 8px; align-items: center; color: var(--acid); font-weight: 800; }
.console__head strong i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: blink 1.6s infinite; }
.console__price { display: grid; grid-template-columns: 1fr auto; gap: 4px 20px; align-items: end; margin-top: 34px; }
.console__price > span { color: var(--muted); font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; }
.console__price b { grid-row: 2; font-family: var(--display); font-size: clamp(3.5rem, 6vw, 5.6rem); font-weight: 400; letter-spacing: -.05em; line-height: .9; }
.console__price b small { font-size: .35em; }
.console__price em { grid-row: 1 / 3; grid-column: 2; align-self: end; padding: 7px 9px; color: var(--ink); background: var(--acid); font-family: var(--mono); font-size: .66rem; font-style: normal; }
.chart { display: block; width: 100%; margin: 24px 0 8px; overflow: visible; }
.chart__grid { fill: none; stroke: rgba(240, 236, 223, .09); stroke-width: 1; }
.chart__limit { fill: none; stroke: rgba(255, 112, 82, .45); stroke-width: 1; stroke-dasharray: 7 8; }
.chart__area { fill: url(#area); }
.chart__line { fill: none; stroke: var(--acid); stroke-width: 3; vector-effect: non-scaling-stroke; stroke-dasharray: 1100; stroke-dashoffset: 1100; animation: draw 2s 500ms ease-out forwards; }
.chart__point { fill: var(--acid); filter: drop-shadow(0 0 8px var(--acid)); animation: blink 1.6s infinite; }
.console__signals { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.console__signals span { display: flex; flex-direction: column; gap: 5px; padding: 15px 10px; color: var(--muted); font-size: .58rem; text-transform: uppercase; }
.console__signals span + span { border-left: 1px solid var(--line); }
.console__signals i { color: var(--coral); font-family: var(--mono); font-style: normal; }
.console__signals b { color: var(--paper); font-size: .62rem; font-weight: 500; text-transform: none; }
.console__decision { display: grid; grid-template-columns: 90px 1fr; gap: 15px; margin: 0; padding: 20px 0 0; font-family: var(--display); font-size: 1rem; line-height: 1.35; }
.console__decision span { padding-top: 3px; color: var(--acid); font-family: var(--sans); font-size: .57rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.scroll-cue { position: absolute; bottom: 28px; left: 0; display: flex; gap: 16px; align-items: center; color: var(--muted); font-size: .61rem; font-weight: 800; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.scroll-cue span { color: var(--acid); }
.scroll-cue i { margin-left: 5px; color: var(--paper); font-size: 1rem; font-style: normal; }

.services,
.clients,
.principles,
.method,
.glossary,
.team,
.contact { padding: 140px 0; border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: .38fr 1.25fr .68fr; gap: 50px; align-items: start; margin-bottom: 90px; }
.section-heading h2,
.fit h2,
.principles h2,
.method h2,
.glossary h2,
.team h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.7vw, 6rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
}
.section-heading > p:last-child,
.fit__question > p:last-child,
.principles__intro > p:last-child,
.method__intro > p:last-child { max-width: 43ch; margin: 8px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.72; }

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card { position: relative; min-height: 510px; padding: clamp(28px, 4.5vw, 66px); color: var(--paper); background: var(--ink-soft); overflow: hidden; }
.service-card::after { position: absolute; right: -70px; bottom: -70px; width: 180px; height: 180px; border: 1px solid currentColor; border-radius: 50%; opacity: .08; content: ""; }
.service-card--acid { color: var(--ink); background: var(--acid); }
.service-card--coral { color: var(--ink); background: var(--coral); }
.service-card--special { min-height: auto; background: var(--ink-raised); }
.service-card__top { display: flex; justify-content: space-between; margin-bottom: clamp(70px, 9vw, 120px); font-family: var(--mono); font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; }
.service-card__top p { margin: 0; }
.service-card h3 { max-width: 12ch; margin: 0 0 27px; font-family: var(--display); font-size: clamp(2.5rem, 4vw, 4.5rem); font-weight: 400; letter-spacing: -.045em; line-height: .9; }
.service-card > p { max-width: 60ch; margin: 0; color: #b3b4aa; font-size: .86rem; line-height: 1.7; }
.service-card--acid > p,
.service-card--coral > p { color: rgba(17, 19, 15, .72); }
.service-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 35px 0 0; padding: 0; list-style: none; }
.service-card li { padding: 9px 13px 8px; border: 1px solid currentColor; border-radius: 50%; font-family: var(--display); font-size: .93rem; }
.service-card__result { display: block; margin-top: 46px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--acid); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.specialisms { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 52px; background: var(--line); }
.specialisms div { display: flex; flex-direction: column; gap: 8px; padding: 25px 0; background: var(--ink-raised); }
.specialisms div:nth-child(even) { padding-left: 28px; }
.specialisms b { font-family: var(--display); font-size: 1.35rem; font-weight: 400; }
.specialisms span { color: var(--muted); font-size: .7rem; }

.fit { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 10vw, 150px); padding: 140px 0; border-top: 1px solid var(--line); }
.fit__question h2 { margin: 55px 0 38px; }
.fit__criteria { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; }
.fit__criteria li { min-height: 175px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fit__criteria span { color: var(--acid); font-family: var(--mono); font-size: .65rem; }
.fit__criteria p { max-width: 29ch; margin: 44px 0 0; font-family: var(--display); font-size: 1.16rem; line-height: 1.35; }
.fit__note { grid-column: 1 / 3; display: grid; grid-template-columns: .36fr 1fr; gap: 35px; margin: 0; padding: 27px 30px; color: var(--ink); background: var(--acid); font-family: var(--display); font-size: 1.15rem; line-height: 1.45; }
.fit__note span { font-family: var(--sans); font-size: .61rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.client-list { border-top: 1px solid var(--line); }
.client-row { position: relative; display: grid; grid-template-columns: 55px .75fr 1.08fr .62fr; gap: 34px; align-items: center; min-height: 190px; border-bottom: 1px solid var(--line); transition: padding 280ms ease, background 280ms ease, color 280ms ease; }
.client-row:hover { padding-inline: 24px; color: var(--ink); background: var(--paper); }
.client-row__index { color: var(--acid); font-family: var(--mono); font-size: .64rem; }
.client-row h3 { margin: 12px 0 0; font-family: var(--display); font-size: clamp(2rem, 3.2vw, 3.7rem); font-weight: 400; letter-spacing: -.04em; line-height: .94; }
.client-row > p { max-width: 55ch; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }
.client-row ul { display: flex; flex-wrap: wrap; gap: 7px; justify-content: flex-end; margin: 0; padding: 0; list-style: none; }
.client-row li { padding: 7px 10px; border: 1px solid var(--line-strong); border-radius: 50%; font-family: var(--display); font-size: .86rem; }
.client-row:hover > p,
.client-row:hover > div > p { color: #5f6159; }
.client-row:hover li { border-color: rgba(17, 19, 15, .28); }
.client-row:hover .client-row__index { color: #677816; }

.principles__intro { display: grid; grid-template-columns: .35fr 1.1fr .55fr; gap: 55px; align-items: end; margin-bottom: 90px; }
.behavior-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.behavior-grid article { min-height: 300px; padding: clamp(25px, 3vw, 42px); background: var(--ink-soft); transition: background 220ms ease, transform 220ms ease; }
.behavior-grid article:hover { position: relative; z-index: 2; background: var(--ink-raised); transform: translateY(-5px); }
.behavior-grid span { color: var(--coral); font-family: var(--mono); font-size: .64rem; }
.behavior-grid h3 { max-width: 15ch; margin: 70px 0 22px; font-family: var(--display); font-size: clamp(1.7rem, 2.2vw, 2.4rem); font-weight: 400; letter-spacing: -.025em; line-height: 1; }
.behavior-grid p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.65; }
.acceptance { display: grid; grid-template-columns: .75fr 1fr 1fr; gap: 1px; margin-top: 90px; background: var(--line); border: 1px solid var(--line); }
.acceptance > div { padding: clamp(28px, 4vw, 52px); background: var(--ink-soft); }
.acceptance__title h3 { max-width: 11ch; margin: 55px 0 0; font-family: var(--display); font-size: 2.5rem; font-weight: 400; letter-spacing: -.035em; line-height: .95; }
.acceptance__column > span { display: block; margin-bottom: 45px; padding-bottom: 16px; border-bottom: 2px solid; font-size: .63rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.acceptance__column--good > span { color: var(--acid); }
.acceptance__column--risk > span { color: var(--coral); }
.acceptance__column p { position: relative; margin: 0; padding: 14px 0 14px 26px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.06rem; }
.acceptance__column p::before { position: absolute; left: 0; content: "+"; }
.acceptance__column--risk p::before { content: "−"; }

.method { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 10vw, 150px); }
.method__intro { position: sticky; top: 70px; align-self: start; }
.method__intro h2 { margin: 55px 0 35px; }
.method__steps { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.method__steps li { display: grid; grid-template-columns: 65px 1fr; gap: 22px; padding: 31px 0 35px; border-bottom: 1px solid var(--line); }
.method__steps li > span { padding-top: 7px; color: var(--acid); font-family: var(--mono); font-size: .64rem; }
.method__steps h3 { margin: 0 0 10px; font-family: var(--display); font-size: 1.85rem; font-weight: 400; letter-spacing: -.025em; }
.method__steps p { max-width: 58ch; margin: 0; color: var(--muted); font-size: .81rem; line-height: 1.65; }

.glossary { display: grid; grid-template-columns: .66fr 1.34fr; gap: clamp(70px, 10vw, 150px); }
.glossary__intro h2 { margin-top: 55px; }
.glossary__items { border-top: 1px solid var(--line); }
.glossary details { border-bottom: 1px solid var(--line); }
.glossary summary { position: relative; display: grid; grid-template-columns: 1fr auto 24px; gap: 20px; align-items: center; padding: 28px 0; cursor: pointer; list-style: none; }
.glossary summary::-webkit-details-marker { display: none; }
.glossary summary::after { grid-column: 3; content: "+"; color: var(--acid); font-family: var(--display); font-size: 1.5rem; text-align: right; }
.glossary details[open] summary::after { content: "−"; }
.glossary summary span { font-family: var(--display); font-size: clamp(1.45rem, 2.2vw, 2rem); }
.glossary summary i { color: var(--muted); font-family: var(--mono); font-size: .6rem; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.glossary details p { max-width: 65ch; margin: -4px 60px 30px 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }

.team__statement { display: grid; grid-template-columns: 1.15fr .65fr; gap: 80px; align-items: end; margin: 65px 0 100px; }
.team__statement > p { max-width: 49ch; margin: 0 0 5px; padding-left: 25px; border-left: 2px solid var(--coral); color: var(--muted); font-size: .88rem; line-height: 1.75; }
.disciplines { display: flex; flex-wrap: wrap; gap: 10px; }
.disciplines span { padding: 13px 20px 12px; border: 1px solid var(--line); border-radius: 50%; font-family: var(--display); font-size: 1.08rem; }
.disciplines span:nth-child(even) { color: var(--acid); }

.contact { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(80px, 12vw, 190px); align-items: end; overflow: hidden; }
.contact > .section-number { grid-column: 1 / 3; }
.contact__main h2 { margin-bottom: 34px; }
.contact__main > p { max-width: 62ch; margin: 0 0 36px; color: var(--muted); font-size: .86rem; line-height: 1.7; }
.contact__brief { padding: 30px; border: 1px solid var(--line); background: var(--ink-soft); }
.contact__brief > span { display: block; margin-bottom: 25px; color: var(--acid); font-size: .61rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact__brief p { margin: 0; padding: 15px 0; border-top: 1px solid var(--line); color: #c7c4ba; font-family: var(--display); font-size: 1rem; line-height: 1.35; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 100px; border-top: 1px solid var(--line); color: var(--muted); font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.site-footer p:last-child { justify-self: end; }

.error-page { display: grid; min-height: 100vh; padding: clamp(30px, 8vw, 120px); align-content: center; background: radial-gradient(circle at 70% 30%, rgba(216, 255, 62, .12), transparent 32%); }
.error-page h1 { max-width: 9ch; margin: 8vh 0 5vh; font-family: var(--display); font-size: clamp(4.5rem, 11vw, 10rem); font-weight: 400; letter-spacing: -.07em; line-height: .75; }
.error-page > p:not(.section-number) { max-width: 40ch; color: var(--muted); font-family: var(--display); font-size: 1.3rem; line-height: 1.5; }
.error-page > a { width: fit-content; margin-top: 30px; padding-bottom: 6px; border-bottom: 2px solid var(--acid); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }

@keyframes reveal { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes blink { 50% { opacity: .45; } }
@keyframes signal { 50% { box-shadow: 0 0 0 9px rgba(216, 255, 62, 0); } }

@media (max-width: 1100px) {
  .site-header nav { gap: 22px; }
  .hero { grid-template-columns: 1fr 1fr; gap: 46px; }
  .hero h1 { font-size: clamp(4.7rem, 9.5vw, 7rem); }
  .section-heading { grid-template-columns: .3fr 1.2fr .65fr; }
  .client-row { grid-template-columns: 40px .75fr 1fr; }
  .client-row ul { grid-column: 2 / 4; justify-content: flex-start; padding-bottom: 28px; }
}

@media (max-width: 900px) {
  .site-header,
  .site-footer,
  main > section { width: min(100% - 36px, 760px); }
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 10vh 0 110px; }
  .hero::before { display: none; }
  .hero h1 { font-size: clamp(5rem, 15vw, 8rem); }
  .price-console { width: min(100%, 650px); justify-self: end; }
  .scroll-cue { display: none; }
  .section-heading,
  .principles__intro { grid-template-columns: 1fr; gap: 28px; }
  .section-heading > p:last-child,
  .principles__intro > p:last-child { margin-left: 22%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card__top { margin-bottom: 70px; }
  .fit,
  .method,
  .glossary { grid-template-columns: 1fr; }
  .fit__note { grid-column: 1; }
  .behavior-grid { grid-template-columns: 1fr 1fr; }
  .acceptance { grid-template-columns: 1fr 1fr; }
  .acceptance__title { grid-column: 1 / 3; }
  .method__intro { position: static; }
  .team__statement { grid-template-columns: 1fr; }
  .team__statement > p { margin-left: 23%; }
  .contact { grid-template-columns: 1fr; }
  .contact > .section-number { grid-column: 1; }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer,
  main > section { width: calc(100% - 28px); }
  .site-header { height: 64px; }
  .header-link { font-size: .56rem; }
  .brand { font-size: .78rem; }
  .hero { padding: 70px 0 90px; }
  .kicker span { display: block; margin-bottom: 9px; }
  .hero h1 { margin: 42px 0 38px; font-size: clamp(4.25rem, 20vw, 6.3rem); line-height: .77; }
  .hero__lead { font-size: 1.03rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .button { justify-content: space-between; width: 100%; }
  .price-console { padding: 17px; box-shadow: none; }
  .console__price b { font-size: 3.5rem; }
  .console__signals { grid-template-columns: 1fr; }
  .console__signals span { flex-direction: row; justify-content: space-between; }
  .console__signals span + span { border-top: 1px solid var(--line); border-left: 0; }
  .console__decision { grid-template-columns: 1fr; }
  .services,
  .clients,
  .principles,
  .method,
  .glossary,
  .team,
  .contact,
  .fit { padding: 88px 0; }
  .section-heading { margin-bottom: 58px; }
  .section-heading h2,
  .fit h2,
  .principles h2,
  .method h2,
  .glossary h2,
  .team h2,
  .contact h2 { font-size: clamp(2.75rem, 14vw, 4.5rem); }
  .section-heading > p:last-child,
  .principles__intro > p:last-child,
  .team__statement > p { margin-left: 0; }
  .service-card { padding: 27px 22px 34px; }
  .service-card__top { margin-bottom: 55px; }
  .service-card h3 { font-size: 2.65rem; }
  .service-card li { font-size: .82rem; }
  .specialisms { grid-template-columns: 1fr; }
  .specialisms div:nth-child(even) { padding-left: 0; }
  .fit__criteria { grid-template-columns: 1fr; }
  .fit__criteria li { min-height: 145px; }
  .fit__criteria p { margin-top: 32px; }
  .fit__note { grid-template-columns: 1fr; }
  .client-row { grid-template-columns: 34px 1fr; gap: 14px; padding: 30px 0; }
  .client-row > p,
  .client-row ul { grid-column: 2; }
  .client-row ul { padding-bottom: 0; }
  .client-row:hover { padding-inline: 10px; }
  .behavior-grid { grid-template-columns: 1fr; }
  .behavior-grid article { min-height: 255px; }
  .behavior-grid h3 { margin-top: 52px; }
  .acceptance { grid-template-columns: 1fr; margin-top: 60px; }
  .acceptance__title { grid-column: 1; }
  .method__steps li { grid-template-columns: 44px 1fr; }
  .glossary summary { grid-template-columns: 1fr 24px; }
  .glossary summary i { display: none; }
  .glossary summary::after { grid-column: 2; }
  .glossary details p { margin-right: 0; }
  .team__statement { gap: 42px; margin: 48px 0 65px; }
  .contact { gap: 55px; }
  .site-footer { grid-template-columns: 1fr auto; gap: 20px; }
  .site-footer > p:first-of-type { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
